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', |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 'i18n/rtl.h', | 343 'i18n/rtl.h', |
344 'i18n/string_compare.cc', | 344 'i18n/string_compare.cc', |
345 'i18n/string_compare.h', | 345 'i18n/string_compare.h', |
346 'i18n/string_search.cc', | 346 'i18n/string_search.cc', |
347 'i18n/string_search.h', | 347 'i18n/string_search.h', |
348 'i18n/time_formatting.cc', | 348 'i18n/time_formatting.cc', |
349 'i18n/time_formatting.h', | 349 'i18n/time_formatting.h', |
350 ], | 350 ], |
351 }, | 351 }, |
352 { | 352 { |
| 353 'target_name': 'base_message_loop_tests', |
| 354 'type': 'static_library', |
| 355 'dependencies': [ |
| 356 'base', |
| 357 '../testing/gtest.gyp:gtest', |
| 358 ], |
| 359 'sources': [ |
| 360 'message_loop/message_loop_test.cc', |
| 361 'message_loop/message_loop_test.h', |
| 362 ], |
| 363 }, |
| 364 { |
353 'target_name': 'base_prefs', | 365 'target_name': 'base_prefs', |
354 'type': '<(component)', | 366 'type': '<(component)', |
355 'variables': { | 367 'variables': { |
356 'enable_wexit_time_destructors': 1, | 368 'enable_wexit_time_destructors': 1, |
357 'optimize': 'max', | 369 'optimize': 'max', |
358 }, | 370 }, |
359 'dependencies': [ | 371 'dependencies': [ |
360 'base', | 372 'base', |
361 ], | 373 ], |
362 'export_dependent_settings': [ | 374 'export_dependent_settings': [ |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 'win/scoped_process_information_unittest.cc', | 680 'win/scoped_process_information_unittest.cc', |
669 'win/scoped_variant_unittest.cc', | 681 'win/scoped_variant_unittest.cc', |
670 'win/shortcut_unittest.cc', | 682 'win/shortcut_unittest.cc', |
671 'win/startup_information_unittest.cc', | 683 'win/startup_information_unittest.cc', |
672 'win/win_util_unittest.cc', | 684 'win/win_util_unittest.cc', |
673 'win/wrapped_window_proc_unittest.cc', | 685 'win/wrapped_window_proc_unittest.cc', |
674 ], | 686 ], |
675 'dependencies': [ | 687 'dependencies': [ |
676 'base', | 688 'base', |
677 'base_i18n', | 689 'base_i18n', |
| 690 'base_message_loop_tests', |
678 'base_prefs', | 691 'base_prefs', |
679 'base_prefs_test_support', | 692 'base_prefs_test_support', |
680 'base_static', | 693 'base_static', |
681 'run_all_unittests', | 694 'run_all_unittests', |
682 'test_support_base', | 695 'test_support_base', |
683 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', | 696 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat
ions', |
684 '../testing/gmock.gyp:gmock', | 697 '../testing/gmock.gyp:gmock', |
685 '../testing/gtest.gyp:gtest', | 698 '../testing/gtest.gyp:gtest', |
686 '../third_party/icu/icu.gyp:icui18n', | 699 '../third_party/icu/icu.gyp:icui18n', |
687 '../third_party/icu/icu.gyp:icuuc', | 700 '../third_party/icu/icu.gyp:icuuc', |
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1370 'base_unittests.isolate', | 1383 'base_unittests.isolate', |
1371 ], | 1384 ], |
1372 'sources': [ | 1385 'sources': [ |
1373 'base_unittests.isolate', | 1386 'base_unittests.isolate', |
1374 ], | 1387 ], |
1375 }, | 1388 }, |
1376 ], | 1389 ], |
1377 }], | 1390 }], |
1378 ], | 1391 ], |
1379 } | 1392 } |
OLD | NEW |