OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables' : { | 5 'variables' : { |
6 'chromedriver_unittest_sources': [ | 6 'chromedriver_unittest_sources': [ |
7 'test/chromedriver/capabilities_unittest.cc', | 7 'test/chromedriver/capabilities_unittest.cc', |
8 'test/chromedriver/chrome/chrome_finder_unittest.cc', | 8 'test/chromedriver/chrome/chrome_finder_unittest.cc', |
9 'test/chromedriver/chrome/console_logger_unittest.cc', | 9 'test/chromedriver/chrome/console_logger_unittest.cc', |
10 'test/chromedriver/chrome/device_manager_unittest.cc', | 10 'test/chromedriver/chrome/device_manager_unittest.cc', |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 { | 482 { |
483 'target_name': 'automation_client_lib', | 483 'target_name': 'automation_client_lib', |
484 'type': 'static_library', | 484 'type': 'static_library', |
485 'hard_dependency': 1, | 485 'hard_dependency': 1, |
486 'dependencies': [ | 486 'dependencies': [ |
487 '../base/base.gyp:base', | 487 '../base/base.gyp:base', |
488 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 488 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
489 '../net/net.gyp:net', | 489 '../net/net.gyp:net', |
490 '../third_party/zlib/zlib.gyp:minizip', | 490 '../third_party/zlib/zlib.gyp:minizip', |
491 '../third_party/zlib/zlib.gyp:zlib', | 491 '../third_party/zlib/zlib.gyp:zlib', |
| 492 '../ui/gfx/gfx.gyp:gfx', |
492 '../ui/ui.gyp:ui', | 493 '../ui/ui.gyp:ui', |
493 '../url/url.gyp:url_lib', | 494 '../url/url.gyp:url_lib', |
494 ], | 495 ], |
495 'include_dirs': [ | 496 'include_dirs': [ |
496 '..', | 497 '..', |
497 '<(SHARED_INTERMEDIATE_DIR)', | 498 '<(SHARED_INTERMEDIATE_DIR)', |
498 ], | 499 ], |
499 'direct_dependent_settings': { | 500 'direct_dependent_settings': { |
500 'include_dirs': [ | 501 'include_dirs': [ |
501 '<(SHARED_INTERMEDIATE_DIR)', | 502 '<(SHARED_INTERMEDIATE_DIR)', |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 'target_name': 'chromedriver_lib', | 669 'target_name': 'chromedriver_lib', |
669 'type': 'static_library', | 670 'type': 'static_library', |
670 'hard_dependency': 1, | 671 'hard_dependency': 1, |
671 'dependencies': [ | 672 'dependencies': [ |
672 'automation_client_lib', | 673 'automation_client_lib', |
673 '../base/base.gyp:base', | 674 '../base/base.gyp:base', |
674 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 675 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
675 '../crypto/crypto.gyp:crypto', | 676 '../crypto/crypto.gyp:crypto', |
676 '../net/net.gyp:http_server', | 677 '../net/net.gyp:http_server', |
677 '../net/net.gyp:net', | 678 '../net/net.gyp:net', |
| 679 '../ui/gfx/gfx.gyp:gfx', |
678 '../ui/ui.gyp:ui', | 680 '../ui/ui.gyp:ui', |
679 ], | 681 ], |
680 'include_dirs': [ | 682 'include_dirs': [ |
681 '..', | 683 '..', |
682 ], | 684 ], |
683 'sources': [ | 685 'sources': [ |
684 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/version.cc', | 686 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/version.cc', |
685 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/version.h', | 687 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/version.h', |
686 '../third_party/webdriver/atoms.cc', | 688 '../third_party/webdriver/atoms.cc', |
687 '../third_party/webdriver/atoms.h', | 689 '../third_party/webdriver/atoms.h', |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
768 { | 770 { |
769 'target_name': 'chromedriver_unittests', | 771 'target_name': 'chromedriver_unittests', |
770 'type': 'executable', | 772 'type': 'executable', |
771 'dependencies': [ | 773 'dependencies': [ |
772 'chromedriver_lib', | 774 'chromedriver_lib', |
773 '../base/base.gyp:base', | 775 '../base/base.gyp:base', |
774 '../base/base.gyp:run_all_unittests', | 776 '../base/base.gyp:run_all_unittests', |
775 '../net/net.gyp:http_server', | 777 '../net/net.gyp:http_server', |
776 '../net/net.gyp:net', | 778 '../net/net.gyp:net', |
777 '../testing/gtest.gyp:gtest', | 779 '../testing/gtest.gyp:gtest', |
| 780 '../ui/gfx/gfx.gyp:gfx', |
778 '../ui/ui.gyp:ui', | 781 '../ui/ui.gyp:ui', |
779 ], | 782 ], |
780 'include_dirs': [ | 783 'include_dirs': [ |
781 '..,' | 784 '..,' |
782 ], | 785 ], |
783 'sources': [ | 786 'sources': [ |
784 '<@(chromedriver_unittest_sources)', | 787 '<@(chromedriver_unittest_sources)', |
785 ], | 788 ], |
786 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 789 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
787 'msvs_disabled_warnings': [ 4267, ], | 790 'msvs_disabled_warnings': [ 4267, ], |
788 }, | 791 }, |
789 # TODO(kkania): Remove when infra no longer references this. | 792 # TODO(kkania): Remove when infra no longer references this. |
790 { | 793 { |
791 'target_name': 'chromedriver2_unittests', | 794 'target_name': 'chromedriver2_unittests', |
792 'type': 'executable', | 795 'type': 'executable', |
793 'dependencies': [ | 796 'dependencies': [ |
794 'chromedriver_lib', | 797 'chromedriver_lib', |
795 '../base/base.gyp:base', | 798 '../base/base.gyp:base', |
796 '../base/base.gyp:run_all_unittests', | 799 '../base/base.gyp:run_all_unittests', |
797 '../net/net.gyp:http_server', | 800 '../net/net.gyp:http_server', |
798 '../net/net.gyp:net', | 801 '../net/net.gyp:net', |
799 '../testing/gtest.gyp:gtest', | 802 '../testing/gtest.gyp:gtest', |
| 803 '../ui/gfx/gfx.gyp:gfx', |
800 '../ui/ui.gyp:ui', | 804 '../ui/ui.gyp:ui', |
801 ], | 805 ], |
802 'include_dirs': [ | 806 'include_dirs': [ |
803 '..,' | 807 '..,' |
804 ], | 808 ], |
805 'sources': [ | 809 'sources': [ |
806 '<@(chromedriver_unittest_sources)', | 810 '<@(chromedriver_unittest_sources)', |
807 ], | 811 ], |
808 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 812 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
809 'msvs_disabled_warnings': [ 4267, ], | 813 'msvs_disabled_warnings': [ 4267, ], |
(...skipping 2345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3155 'utility', | 3159 'utility', |
3156 ], | 3160 ], |
3157 'sources': [ | 3161 'sources': [ |
3158 'tools/service_discovery_sniffer/service_discovery_sniffer.h', | 3162 'tools/service_discovery_sniffer/service_discovery_sniffer.h', |
3159 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', | 3163 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', |
3160 ], | 3164 ], |
3161 }] | 3165 }] |
3162 }], | 3166 }], |
3163 ], # 'conditions' | 3167 ], # 'conditions' |
3164 } | 3168 } |
OLD | NEW |