OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'base.gypi', | 10 'base.gypi', |
11 ], | 11 ], |
12 'targets': [ | 12 'targets': [ |
13 { | 13 { |
14 'target_name': 'base_i18n', | 14 'target_name': 'base_i18n', |
15 'type': 'static_library', | 15 'type': 'static_library', |
16 'msvs_guid': '968F3222-9798-4D21-BE08-15ECB5EF2994', | |
17 'dependencies': [ | 16 'dependencies': [ |
18 'base', | 17 'base', |
19 '../third_party/icu/icu.gyp:icui18n', | 18 '../third_party/icu/icu.gyp:icui18n', |
20 '../third_party/icu/icu.gyp:icuuc', | 19 '../third_party/icu/icu.gyp:icuuc', |
21 ], | 20 ], |
22 'conditions': [ | 21 'conditions': [ |
23 ['toolkit_uses_gtk==1', { | 22 ['toolkit_uses_gtk==1', { |
24 'dependencies': [ | 23 'dependencies': [ |
25 # i18n/rtl.cc uses gtk | 24 # i18n/rtl.cc uses gtk |
26 '../build/linux/system.gyp:gtk', | 25 '../build/linux/system.gyp:gtk', |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 'NACL_WIN64', | 93 'NACL_WIN64', |
95 ], | 94 ], |
96 # TODO(rvargas): Bug 78117. Remove this. | 95 # TODO(rvargas): Bug 78117. Remove this. |
97 'msvs_disabled_warnings': [ | 96 'msvs_disabled_warnings': [ |
98 4244, | 97 4244, |
99 ], | 98 ], |
100 }, | 99 }, |
101 { | 100 { |
102 'target_name': 'base_unittests', | 101 'target_name': 'base_unittests', |
103 'type': 'executable', | 102 'type': 'executable', |
104 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC', | |
105 'sources': [ | 103 'sources': [ |
106 # Infrastructure files. | 104 # Infrastructure files. |
107 'test/run_all_unittests.cc', | 105 'test/run_all_unittests.cc', |
108 | 106 |
109 # Tests. | 107 # Tests. |
110 'at_exit_unittest.cc', | 108 'at_exit_unittest.cc', |
111 'atomicops_unittest.cc', | 109 'atomicops_unittest.cc', |
112 'base64_unittest.cc', | 110 'base64_unittest.cc', |
113 'bind_unittest.cc', | 111 'bind_unittest.cc', |
114 'bits_unittest.cc', | 112 'bits_unittest.cc', |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 ], | 382 ], |
385 }], | 383 }], |
386 ], | 384 ], |
387 } | 385 } |
388 | 386 |
389 # Local Variables: | 387 # Local Variables: |
390 # tab-width:2 | 388 # tab-width:2 |
391 # indent-tabs-mode:nil | 389 # indent-tabs-mode:nil |
392 # End: | 390 # End: |
393 # vim: set expandtab tabstop=2 shiftwidth=2: | 391 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |