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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
11 'base.gypi', | 11 'base.gypi', |
12 ], | 12 ], |
13 'targets': [ | 13 'targets': [ |
14 { | 14 { |
15 'target_name': 'base', | 15 'target_name': 'base', |
16 'type': '<(component)', | 16 'type': '<(component)', |
17 'toolsets': ['host', 'target'], | 17 'toolsets': ['host', 'target'], |
18 'variables': { | 18 'variables': { |
19 'base_target': 1, | 19 'base_target': 1, |
20 'enable_wexit_time_destructors': 1, | 20 'enable_wexit_time_destructors': 1, |
21 'optimize': 'max', | 21 'optimize': 'max', |
22 }, | 22 }, |
23 'dependencies': [ | 23 'dependencies': [ |
24 'base_static', | 24 'base_static', |
25 'allocator/allocator.gyp:allocator_extension_thunks', | 25 'allocator/allocator.gyp:allocator_extension_thunks', |
26 '../testing/gtest.gyp:gtest_prod', | 26 '../testing/gtest.gyp:gtest_prod', |
27 '../third_party/modp_b64/modp_b64.gyp:modp_b64', | 27 '../third_party/modp_b64/modp_b64.gyp:modp_b64', |
28 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', | 28 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', |
| 29 'third_party/nspr/nspr.gyp:nspr', |
29 ], | 30 ], |
30 # TODO(gregoryd): direct_dependent_settings should be shared with the | 31 # TODO(gregoryd): direct_dependent_settings should be shared with the |
31 # 64-bit target, but it doesn't work due to a bug in gyp | 32 # 64-bit target, but it doesn't work due to a bug in gyp |
32 'direct_dependent_settings': { | 33 'direct_dependent_settings': { |
33 'include_dirs': [ | 34 'include_dirs': [ |
34 '..', | 35 '..', |
35 ], | 36 ], |
36 }, | 37 }, |
37 'conditions': [ | 38 'conditions': [ |
38 ['use_glib==1', { | 39 ['use_glib==1', { |
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 'win/win_util_unittest.cc', | 582 'win/win_util_unittest.cc', |
582 'win/wrapped_window_proc_unittest.cc', | 583 'win/wrapped_window_proc_unittest.cc', |
583 ], | 584 ], |
584 'dependencies': [ | 585 'dependencies': [ |
585 'base', | 586 'base', |
586 'base_i18n', | 587 'base_i18n', |
587 'base_static', | 588 'base_static', |
588 'run_all_unittests', | 589 'run_all_unittests', |
589 'test_support_base', | 590 'test_support_base', |
590 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', | 591 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', |
| 592 'third_party/nspr/nspr.gyp:nspr', |
591 '../testing/gmock.gyp:gmock', | 593 '../testing/gmock.gyp:gmock', |
592 '../testing/gtest.gyp:gtest', | 594 '../testing/gtest.gyp:gtest', |
593 '../third_party/icu/icu.gyp:icui18n', | 595 '../third_party/icu/icu.gyp:icui18n', |
594 '../third_party/icu/icu.gyp:icuuc', | 596 '../third_party/icu/icu.gyp:icuuc', |
595 ], | 597 ], |
596 'includes': ['../build/nocompile.gypi'], | 598 'includes': ['../build/nocompile.gypi'], |
597 'variables': { | 599 'variables': { |
598 # TODO(ajwong): Is there a way to autodetect this? | 600 # TODO(ajwong): Is there a way to autodetect this? |
599 'module_dir': 'base' | 601 'module_dir': 'base' |
600 }, | 602 }, |
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1109 'base_unittests.isolate', | 1111 'base_unittests.isolate', |
1110 ], | 1112 ], |
1111 'sources': [ | 1113 'sources': [ |
1112 'base_unittests.isolate', | 1114 'base_unittests.isolate', |
1113 ], | 1115 ], |
1114 }, | 1116 }, |
1115 ], | 1117 ], |
1116 }], | 1118 }], |
1117 ], | 1119 ], |
1118 } | 1120 } |
OLD | NEW |