| 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', |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 'gfx/native_widget_types_gtk.cc', | 546 'gfx/native_widget_types_gtk.cc', |
| 547 ], | 547 ], |
| 548 }], | 548 }], |
| 549 ], | 549 ], |
| 550 }, | 550 }, |
| 551 { | 551 { |
| 552 'target_name': 'base_unittests', | 552 'target_name': 'base_unittests', |
| 553 'type': 'executable', | 553 'type': 'executable', |
| 554 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC', | 554 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC', |
| 555 'sources': [ | 555 'sources': [ |
| 556 'crypto/signature_verifier_unittest.cc', | |
| 557 'gfx/jpeg_codec_unittest.cc', | |
| 558 'gfx/native_theme_unittest.cc', | |
| 559 'gfx/png_codec_unittest.cc', | |
| 560 'gfx/rect_unittest.cc', | |
| 561 'at_exit_unittest.cc', | 556 'at_exit_unittest.cc', |
| 562 'atomicops_unittest.cc', | 557 'atomicops_unittest.cc', |
| 563 'clipboard_unittest.cc', | 558 'clipboard_unittest.cc', |
| 564 'command_line_unittest.cc', | 559 'command_line_unittest.cc', |
| 565 'condition_variable_unittest.cc', | 560 'condition_variable_unittest.cc', |
| 561 'crypto/signature_verifier_unittest.cc', |
| 562 'gmock_unittest.cc', |
| 566 'data_pack_unittest.cc', | 563 'data_pack_unittest.cc', |
| 567 'debug_util_unittest.cc', | 564 'debug_util_unittest.cc', |
| 568 'directory_watcher_unittest.cc', | 565 'directory_watcher_unittest.cc', |
| 569 'field_trial_unittest.cc', | 566 'field_trial_unittest.cc', |
| 570 'file_descriptor_shuffle_unittest.cc', | 567 'file_descriptor_shuffle_unittest.cc', |
| 571 'file_path_unittest.cc', | 568 'file_path_unittest.cc', |
| 572 'file_util_unittest.cc', | 569 'file_util_unittest.cc', |
| 573 'file_version_info_unittest.cc', | 570 'file_version_info_unittest.cc', |
| 571 'gfx/jpeg_codec_unittest.cc', |
| 572 'gfx/native_theme_unittest.cc', |
| 573 'gfx/png_codec_unittest.cc', |
| 574 'gfx/rect_unittest.cc', |
| 574 'histogram_unittest.cc', | 575 'histogram_unittest.cc', |
| 575 'hmac_unittest.cc', | 576 'hmac_unittest.cc', |
| 576 'idletimer_unittest.cc', | 577 'idletimer_unittest.cc', |
| 577 'json_reader_unittest.cc', | 578 'json_reader_unittest.cc', |
| 578 'json_writer_unittest.cc', | 579 'json_writer_unittest.cc', |
| 579 'lazy_instance_unittest.cc', | 580 'lazy_instance_unittest.cc', |
| 580 'linked_ptr_unittest.cc', | 581 'linked_ptr_unittest.cc', |
| 581 'mac_util_unittest.cc', | 582 'mac_util_unittest.cc', |
| 582 'message_loop_unittest.cc', | 583 'message_loop_unittest.cc', |
| 583 'object_watcher_unittest.cc', | 584 'object_watcher_unittest.cc', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 ], | 630 ], |
| 630 'include_dirs': [ | 631 'include_dirs': [ |
| 631 # word_iterator.h (used by word_iterator_unittest.cc) leaks an ICU | 632 # word_iterator.h (used by word_iterator_unittest.cc) leaks an ICU |
| 632 # #include for unicode/uchar.h. This should probably be cleaned up. | 633 # #include for unicode/uchar.h. This should probably be cleaned up. |
| 633 '../third_party/icu38/public/common', | 634 '../third_party/icu38/public/common', |
| 634 ], | 635 ], |
| 635 'dependencies': [ | 636 'dependencies': [ |
| 636 'base', | 637 'base', |
| 637 'base_gfx', | 638 'base_gfx', |
| 638 '../skia/skia.gyp:skia', | 639 '../skia/skia.gyp:skia', |
| 640 '../testing/gmock.gyp:gmock', |
| 639 '../testing/gtest.gyp:gtest', | 641 '../testing/gtest.gyp:gtest', |
| 640 ], | 642 ], |
| 641 'conditions': [ | 643 'conditions': [ |
| 642 ['OS == "linux"', { | 644 ['OS == "linux"', { |
| 643 'sources!': [ | 645 'sources!': [ |
| 644 'file_version_info_unittest.cc', | 646 'file_version_info_unittest.cc', |
| 645 # Linux has an implementation of idle_timer, but it's unclear | 647 # Linux has an implementation of idle_timer, but it's unclear |
| 646 # if we want it yet, so leave it 'unported' for now. | 648 # if we want it yet, so leave it 'unported' for now. |
| 647 'idletimer_unittest.cc', | 649 'idletimer_unittest.cc', |
| 648 'worker_pool_linux_unittest.cc', | 650 'worker_pool_linux_unittest.cc', |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 'target_name': 'debug_message', | 721 'target_name': 'debug_message', |
| 720 'type': 'executable', | 722 'type': 'executable', |
| 721 'sources': [ | 723 'sources': [ |
| 722 'debug_message.cc', | 724 'debug_message.cc', |
| 723 ], | 725 ], |
| 724 }, | 726 }, |
| 725 ], | 727 ], |
| 726 }], | 728 }], |
| 727 ], | 729 ], |
| 728 } | 730 } |
| OLD | NEW |