| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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/common.gypi', | 10 '../build/common.gypi', |
| 11 ], | 11 ], |
| 12 'targets': [ | 12 'targets': [ |
| 13 { | 13 { |
| 14 'target_name': 'base', | 14 'target_name': 'base', |
| 15 'type': 'static_library', | 15 'type': '<(library)', |
| 16 'dependencies': [ | 16 'dependencies': [ |
| 17 '../third_party/icu38/icu38.gyp:icui18n', | 17 '../third_party/icu38/icu38.gyp:icui18n', |
| 18 '../third_party/icu38/icu38.gyp:icuuc', | 18 '../third_party/icu38/icu38.gyp:icuuc', |
| 19 ], | 19 ], |
| 20 'msvs_guid': '1832A374-8A74-4F9E-B536-69A699B3E165', | 20 'msvs_guid': '1832A374-8A74-4F9E-B536-69A699B3E165', |
| 21 'sources': [ | 21 'sources': [ |
| 22 '../build/build_config.h', | 22 '../build/build_config.h', |
| 23 'third_party/dmg_fp/dmg_fp.h', | 23 'third_party/dmg_fp/dmg_fp.h', |
| 24 'third_party/dmg_fp/dtoa.cc', | 24 'third_party/dmg_fp/dtoa.cc', |
| 25 'third_party/dmg_fp/g_fmt.cc', | 25 'third_party/dmg_fp/g_fmt.cc', |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 'resource_util.cc', | 445 'resource_util.cc', |
| 446 'win_util.cc', | 446 'win_util.cc', |
| 447 'wmi_util.cc', | 447 'wmi_util.cc', |
| 448 ], | 448 ], |
| 449 }, | 449 }, |
| 450 ], | 450 ], |
| 451 ], | 451 ], |
| 452 }, | 452 }, |
| 453 { | 453 { |
| 454 'target_name': 'base_gfx', | 454 'target_name': 'base_gfx', |
| 455 'type': 'static_library', | 455 'type': '<(library)', |
| 456 'msvs_guid': 'A508ADD3-CECE-4E0F-8448-2F5E454DF551', | 456 'msvs_guid': 'A508ADD3-CECE-4E0F-8448-2F5E454DF551', |
| 457 'sources': [ | 457 'sources': [ |
| 458 'gfx/gdi_util.cc', | 458 'gfx/gdi_util.cc', |
| 459 'gfx/gdi_util.h', | 459 'gfx/gdi_util.h', |
| 460 'gfx/gtk_util.cc', | 460 'gfx/gtk_util.cc', |
| 461 'gfx/gtk_util.h', | 461 'gfx/gtk_util.h', |
| 462 'gfx/jpeg_codec.cc', | 462 'gfx/jpeg_codec.cc', |
| 463 'gfx/jpeg_codec.h', | 463 'gfx/jpeg_codec.h', |
| 464 'gfx/native_theme.cc', | 464 'gfx/native_theme.cc', |
| 465 'gfx/native_theme.h', | 465 'gfx/native_theme.h', |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 'system_monitor_unittest.cc', | 639 'system_monitor_unittest.cc', |
| 640 'time_win_unittest.cc', | 640 'time_win_unittest.cc', |
| 641 'win_util_unittest.cc', | 641 'win_util_unittest.cc', |
| 642 'wmi_util_unittest.cc', | 642 'wmi_util_unittest.cc', |
| 643 ], | 643 ], |
| 644 }], | 644 }], |
| 645 ], | 645 ], |
| 646 }, | 646 }, |
| 647 { | 647 { |
| 648 'target_name': 'test_support_base', | 648 'target_name': 'test_support_base', |
| 649 'type': 'static_library', | 649 'type': '<(library)', |
| 650 'dependencies': [ | 650 'dependencies': [ |
| 651 'base', | 651 'base', |
| 652 '../testing/gtest.gyp:gtest', | 652 '../testing/gtest.gyp:gtest', |
| 653 ], | 653 ], |
| 654 'sources': [ | 654 'sources': [ |
| 655 'perftimer.cc', | 655 'perftimer.cc', |
| 656 'run_all_perftests.cc', | 656 'run_all_perftests.cc', |
| 657 ], | 657 ], |
| 658 'direct_dependent_settings': { | 658 'direct_dependent_settings': { |
| 659 'defines': [ | 659 'defines': [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 680 'target_name': 'debug_message', | 680 'target_name': 'debug_message', |
| 681 'type': 'executable', | 681 'type': 'executable', |
| 682 'sources': [ | 682 'sources': [ |
| 683 'debug_message.cc', | 683 'debug_message.cc', |
| 684 ], | 684 ], |
| 685 }, | 685 }, |
| 686 ], | 686 ], |
| 687 }], | 687 }], |
| 688 ], | 688 ], |
| 689 } | 689 } |
| OLD | NEW |