| 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 'icu.gypi', | 7 'icu.gypi', |
| 8 ], | 8 ], |
| 9 'variables': { | 9 'variables': { |
| 10 'use_system_icu%': 0, | 10 'use_system_icu%': 0, |
| 11 'icu_use_data_file_flag%': 0, | 11 'icu_use_data_file_flag%': 0, |
| 12 'want_separate_host_toolset%': 1, | 12 'want_separate_host_toolset%': 1, |
| 13 }, | 13 }, |
| 14 'target_defaults': { | 14 'target_defaults': { |
| 15 'direct_dependent_settings': { | 15 'direct_dependent_settings': { |
| 16 'defines': [ | 16 'defines': [ |
| 17 # Tell ICU to not insert |using namespace icu;| into its headers, | 17 # Tell ICU to not insert |using namespace icu;| into its headers, |
| 18 # so that chrome's source explicitly has to use |icu::|. | 18 # so that chrome's source explicitly has to use |icu::|. |
| 19 'U_USING_ICU_NAMESPACE=0', | 19 'U_USING_ICU_NAMESPACE=0', |
| 20 # We don't use ICU plugins and dyload is only necessary for them. |
| 21 # NaCl-related builds also fail looking for dlfcn.h when it's enabled. |
| 22 'U_ENABLE_DYLOAD=0', |
| 20 ], | 23 ], |
| 21 }, | 24 }, |
| 22 'defines': [ | 25 'defines': [ |
| 23 'U_USING_ICU_NAMESPACE=0', | 26 'U_USING_ICU_NAMESPACE=0', |
| 24 'HAVE_DLOPEN=0', | 27 'HAVE_DLOPEN=0', |
| 25 ], | 28 ], |
| 26 'conditions': [ | 29 'conditions': [ |
| 27 ['component=="static_library"', { | 30 ['component=="static_library"', { |
| 28 'defines': [ | 31 'defines': [ |
| 29 'U_STATIC_IMPLEMENTATION', | 32 'U_STATIC_IMPLEMENTATION', |
| (...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 }, | 590 }, |
| 588 'includes': [ | 591 'includes': [ |
| 589 '../../build/shim_headers.gypi', | 592 '../../build/shim_headers.gypi', |
| 590 ], | 593 ], |
| 591 'toolsets': ['target'], | 594 'toolsets': ['target'], |
| 592 }, | 595 }, |
| 593 ], # targets | 596 ], # targets |
| 594 }], | 597 }], |
| 595 ], # conditions | 598 ], # conditions |
| 596 } | 599 } |
| OLD | NEW |