3 # Copyright (C) 2014, 2015 Apple Inc. All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
9 # 1. Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in the
13 # documentation and/or other materials provided with the distribution.
14 # 3. Neither the name of Apple puter, Inc. ("Apple") nor the names of
15 # its contributors may be used to endorse or promote products derived
16 # from this software without specific prior written permission.
18 # THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 # DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22 # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 use File::Path qw(make_path);
35 my $XSRCROOT = Cwd::realpath(File::Spec->updir);
36 $ENV{'XSRCROOT'} = $XSRCROOT;
37 $ENV{'SRCROOT'} = $XSRCROOT;
39 # Make sure we don't have any leading or trailing quotes
43 my $XDSTROOT = Cwd::realpath($ARGV[0]);
44 $ENV{'XDSTROOT'} = $XDSTROOT;
46 my $TARGET_BUILD_DIR = File::Spec->catdir($XDSTROOT, "bin$ARGV[3]", 'WebKit.resources');
47 $ENV{'TARGET_BUILD_DIR'} = $TARGET_BUILD_DIR;
48 my $JAVASCRIPTCORE_PRIVATE_HEADERS_DIR;
49 if ($ARGV[4] eq '1') {
52 my $Internal = Cwd::realpath($ARGV[1]);;
53 $JAVASCRIPTCORE_PRIVATE_HEADERS_DIR = File::Spec->catdir($Internal, 'include', 'private', 'JavaScriptCore');
55 $JAVASCRIPTCORE_PRIVATE_HEADERS_DIR = File::Spec->catdir($XDSTROOT, "obj$ARGV[3]", 'JavaScriptCore', 'DerivedSources');
58 $ENV{'JAVASCRIPTCORE_PRIVATE_HEADERS_DIR'} = $JAVASCRIPTCORE_PRIVATE_HEADERS_DIR;
60 my $DERIVED_SOURCES_DIR = File::Spec->catdir($XDSTROOT, "obj$ARGV[3]", 'WebInspectorUI', 'DerivedSources');
61 $ENV{'DERIVED_SOURCES_DIR'} = $DERIVED_SOURCES_DIR;
63 $ENV{'UNLOCALIZED_RESOURCES_FOLDER_PATH'} = 'WebInspectorUI';
65 if (($TARGET_BUILD_DIR =~ /Release/) || ($TARGET_BUILD_DIR =~ /Production/)) {
66 $ENV{'COMBINE_INSPECTOR_RESOURCES'} = 'YES';
69 if ($TARGET_BUILD_DIR !~ /Production/) {
70 $ENV{'COMBINE_TEST_RESOURCES'} = 'YES';
73 my $targetResourcePath = File::Spec->catdir($ENV{'TARGET_BUILD_DIR'}, $ENV{'UNLOCALIZED_RESOURCES_FOLDER_PATH'});
74 my $protocolDir = File::Spec->catdir($targetResourcePath, 'Protocol');
76 # Copy over dynamically loaded files from other frameworks, even if we aren't combining resources.
77 my $jsFrom = File::Spec->catfile($ENV{'JAVASCRIPTCORE_PRIVATE_HEADERS_DIR'}, 'InspectorBackendCommands.js');
78 my $jsTo = File::Spec->catfile($protocolDir, 'InspectorBackendCommands.js');
79 print "Copying Inspector bindings from $jsFrom to $jsTo\n";
81 my $copyResourcesCommand = File::Spec->catfile($XSRCROOT, 'Scripts', 'copy-user-interface-resources.pl');
82 do $copyResourcesCommand;