Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(352)

Side by Side Diff: webkit/build/JSConfig/create-config.sh

Issue 174372: Add license information to our shell scripts. (Closed)
Patch Set: Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/usr/bin/bash -x 1 #!/usr/bin/bash -x
2 # 2
3 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
3 # In order to build KJS or V8 versions of Chrome, we need to create 7 # In order to build KJS or V8 versions of Chrome, we need to create
4 # a custom configuration header. This script creates it. 8 # a custom configuration header. This script creates it.
5 # 9 #
6 # Input 10 # Input
7 # create-config.sh <OutputDir> <kjs|v8> 11 # create-config.sh <OutputDir> <kjs|v8>
8 # 12 #
9 # Output 13 # Output
10 # in the $Output\WebCore directory, creates a config.h 14 # in the $Output\WebCore directory, creates a config.h
11 # custom to the desired build setup 15 # custom to the desired build setup
12 # 16 #
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 else 94 else
91 $CP $WebCoreSrcDir/bridge/npapi.h $JSHeadersDir 95 $CP $WebCoreSrcDir/bridge/npapi.h $JSHeadersDir
92 $CP $WebCoreSrcDir/bridge/npruntime.h $JSHeadersDir 96 $CP $WebCoreSrcDir/bridge/npruntime.h $JSHeadersDir
93 $CP ../../../webkit/port/bindings/v8/npruntime_priv.h $JSHeadersDir 97 $CP ../../../webkit/port/bindings/v8/npruntime_priv.h $JSHeadersDir
94 fi 98 fi
95 99
96 if [[ "${OS}" = "Windows_NT" ]] 100 if [[ "${OS}" = "Windows_NT" ]]
97 then 101 then
98 $CP $JavaScriptCoreSrcDir/os-win32/stdint.h $JSHeadersDir 102 $CP $JavaScriptCoreSrcDir/os-win32/stdint.h $JSHeadersDir
99 fi 103 fi
OLDNEW
« no previous file with comments | « tools/valgrind/valgrind_webkit_tests.sh ('k') | webkit/build/JavaScriptCore/build-generated-files.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698