| 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 'variables': { | 6 'variables': { |
| 7 'use_system_icu%': 0, | 7 'use_system_icu%': 0, |
| 8 'icu_use_data_file_flag%': 0, | 8 'icu_use_data_file_flag%': 0, |
| 9 }, | 9 }, |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 'public/common', | 35 'public/common', |
| 36 'public/i18n', | 36 'public/i18n', |
| 37 'source/common', | 37 'source/common', |
| 38 'source/i18n', | 38 'source/i18n', |
| 39 ], | 39 ], |
| 40 'msvs_disabled_warnings': [4005, 4068, 4355, 4996, 4267], | 40 'msvs_disabled_warnings': [4005, 4068, 4355, 4996, 4267], |
| 41 }, | 41 }, |
| 42 'targets': [ | 42 'targets': [ |
| 43 { | 43 { |
| 44 'target_name': 'icudata', | 44 'target_name': 'icudata', |
| 45 'type': '<(library)', | 45 'type': 'static_library', |
| 46 'sources': [ | 46 'sources': [ |
| 47 # These are hand-generated, but will do for now. The linux | 47 # These are hand-generated, but will do for now. The linux |
| 48 # version is an identical copy of the (mac) icudt46l_dat.S file, | 48 # version is an identical copy of the (mac) icudt46l_dat.S file, |
| 49 # modulo removal of the .private_extern and .const directives and | 49 # modulo removal of the .private_extern and .const directives and |
| 50 # with no leading underscore on the icudt46_dat symbol. | 50 # with no leading underscore on the icudt46_dat symbol. |
| 51 'android/icudt46l_dat.S', | 51 'android/icudt46l_dat.S', |
| 52 'linux/icudt46l_dat.S', | 52 'linux/icudt46l_dat.S', |
| 53 'mac/icudt46l_dat.S', | 53 'mac/icudt46l_dat.S', |
| 54 ], | 54 ], |
| 55 'conditions': [ | 55 'conditions': [ |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 'includes': [ | 817 'includes': [ |
| 818 '../../build/shim_headers.gypi', | 818 '../../build/shim_headers.gypi', |
| 819 ], | 819 ], |
| 820 }], | 820 }], |
| 821 ], | 821 ], |
| 822 }, | 822 }, |
| 823 ], | 823 ], |
| 824 }], | 824 }], |
| 825 ], | 825 ], |
| 826 } | 826 } |
| OLD | NEW |