Chromium Code Reviews| 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, |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 127 'copies': [ | 127 'copies': [ |
| 128 { | 128 { |
| 129 'destination': '<(PRODUCT_DIR)', | 129 'destination': '<(PRODUCT_DIR)', |
| 130 'files': [ | 130 'files': [ |
| 131 'windows/icudt.dll', | 131 'windows/icudt.dll', |
| 132 ], | 132 ], |
| 133 }, | 133 }, |
| 134 ], | 134 ], |
| 135 }], | 135 }], |
| 136 [ 'icu_use_data_file_flag==1', { | 136 [ 'icu_use_data_file_flag==1', { |
| 137 'type': 'none', | |
| 137 # Remove any assembly data file. | 138 # Remove any assembly data file. |
| 138 'sources/': [['exclude', 'icudtl_dat']], | 139 'sources/': [['exclude', 'icudtl_dat']], |
| 139 | 140 |
| 140 # Make sure any binary depending on this gets the data file. | 141 # Make sure any binary depending on this gets the data file. |
| 141 'conditions': [ | 142 'conditions': [ |
| 142 ['OS != "ios"', { | 143 ['OS != "ios"', { |
| 143 'dependencies': [ | 144 'dependencies': [ |
| 144 'copy_icudtl_dat#host', | 145 'copy_icudtl_dat#host', |
| 145 ], | 146 ], |
| 146 } , { # else: OS=="ios" | 147 } , { # else: OS=="ios" |
| 147 'link_settings': { | 148 'link_settings': { |
|
jungshik at Google
2015/02/17 21:27:38
I was worried that link_settings may not do anythi
| |
| 148 'mac_bundle_resources': [ | 149 'mac_bundle_resources': [ |
| 149 'source/data/in/icudtl.dat', | 150 'source/data/in/icudtl.dat', |
| 150 ], | 151 ], |
| 151 }, | 152 }, |
| 152 }], # OS!=ios | 153 }], # OS!=ios |
| 153 ], # conditions | 154 ], # conditions |
| 154 }], # icu_use_data_file_flag | 155 }], # icu_use_data_file_flag |
| 155 ], # conditions | 156 ], # conditions |
| 156 'target_conditions': [ | 157 'target_conditions': [ |
| 157 [ 'OS == "win" or OS == "mac" or OS == "ios" or ' | 158 [ 'OS == "win" or OS == "mac" or OS == "ios" or ' |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 581 }, | 582 }, |
| 582 'includes': [ | 583 'includes': [ |
| 583 '../../build/shim_headers.gypi', | 584 '../../build/shim_headers.gypi', |
| 584 ], | 585 ], |
| 585 'toolsets': ['target'], | 586 'toolsets': ['target'], |
| 586 }, | 587 }, |
| 587 ], # targets | 588 ], # targets |
| 588 }], | 589 }], |
| 589 ], # conditions | 590 ], # conditions |
| 590 } | 591 } |
| OLD | NEW |