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

Side by Side Diff: gyp/icu.gyp

Issue 2205903004: GN: get echo-headers sources via exec_script (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: still needed for Mac Created 4 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
« no previous file with comments | « gyp/harfbuzz.gyp ('k') | gyp/nanomsg.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 'common_variables.gypi', 7 'common_variables.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'component%': 'static_library', 10 'component%': 'static_library',
11 'icu_directory': '../third_party/externals/icu' 11 'icu_directory': '../third_party/externals/icu'
12 }, 12 },
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'icuuc', 15 'target_name': 'icuuc',
16 'type': '<(component)', 16 'type': '<(component)',
17 'sources': [ 17 'sources': [
18 '<!@(python find.py ../third_party/externals/icu/source/common "*.c*")' 18 '<!@(python find.py "*.c*" ../third_party/externals/icu/source/common)'
19 ], 19 ],
20 'defines': [ 20 'defines': [
21 'U_COMMON_IMPLEMENTATION', 21 'U_COMMON_IMPLEMENTATION',
22 'U_HIDE_DATA_SYMBOL', 22 'U_HIDE_DATA_SYMBOL',
23 'U_USING_ICU_NAMESPACE=0', 23 'U_USING_ICU_NAMESPACE=0',
24 'HAVE_DLOPEN=0', 24 'HAVE_DLOPEN=0',
25 'UCONFIG_NO_NON_HTML5_CONVERSION=1', 25 'UCONFIG_NO_NON_HTML5_CONVERSION=1',
26 ], 26 ],
27 'include_dirs': [ '<(icu_directory)/source/common', ], 27 'include_dirs': [ '<(icu_directory)/source/common', ],
28 'direct_dependent_settings': { 28 'direct_dependent_settings': {
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 'xcode_settings': { 122 'xcode_settings': {
123 'GCC_ENABLE_CPP_RTTI': 'YES', # -frtti 123 'GCC_ENABLE_CPP_RTTI': 'YES', # -frtti
124 'WARNING_CFLAGS': [ '-w' ], 124 'WARNING_CFLAGS': [ '-w' ],
125 }, 125 },
126 } 126 }
127 ], 127 ],
128 ], # conditions 128 ], # conditions
129 }, 129 },
130 ], # targets 130 ], # targets
131 } 131 }
OLDNEW
« no previous file with comments | « gyp/harfbuzz.gyp ('k') | gyp/nanomsg.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698