| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |