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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'base_target': 0, | 8 'base_target': 0, |
9 'base_i18n_target': 0, | 9 'base_i18n_target': 0, |
10 }, | 10 }, |
| 11 'configurations': { |
| 12 'Release': { |
| 13 'conditions': [ |
| 14 ['OS=="android"', { |
| 15 'cflags!': ['-Os'], |
| 16 'cflags': ['-O2'], |
| 17 }], |
| 18 ], |
| 19 }, |
| 20 }, |
11 'target_conditions': [ | 21 'target_conditions': [ |
12 # This part is shared between the targets defined below. | 22 # This part is shared between the targets defined below. |
13 ['base_target==1', { | 23 ['base_target==1', { |
14 'sources': [ | 24 'sources': [ |
15 '../build/build_config.h', | 25 '../build/build_config.h', |
16 'third_party/dmg_fp/dmg_fp.h', | 26 'third_party/dmg_fp/dmg_fp.h', |
17 'third_party/dmg_fp/g_fmt.cc', | 27 'third_party/dmg_fp/g_fmt.cc', |
18 'third_party/dmg_fp/dtoa_wrapper.cc', | 28 'third_party/dmg_fp/dtoa_wrapper.cc', |
19 'third_party/icu/icu_utf.cc', | 29 'third_party/icu/icu_utf.cc', |
20 'third_party/icu/icu_utf.h', | 30 'third_party/icu/icu_utf.h', |
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
997 'i18n/time_formatting.h', | 1007 'i18n/time_formatting.h', |
998 'i18n/timezone.cc', | 1008 'i18n/timezone.cc', |
999 'i18n/timezone.h', | 1009 'i18n/timezone.h', |
1000 'i18n/utf8_validator_tables.cc', | 1010 'i18n/utf8_validator_tables.cc', |
1001 'i18n/utf8_validator_tables.h', | 1011 'i18n/utf8_validator_tables.h', |
1002 ], | 1012 ], |
1003 }] | 1013 }] |
1004 ], | 1014 ], |
1005 }, | 1015 }, |
1006 } | 1016 } |
OLD | NEW |