Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(416)

Side by Side Diff: chrome/chrome_tests.gypi

Issue 57433011: Restructure the events target into two components: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | components/autofill.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 { 542 {
543 'target_name': 'automation_client_lib', 543 'target_name': 'automation_client_lib',
544 'type': 'static_library', 544 'type': 'static_library',
545 'hard_dependency': 1, 545 'hard_dependency': 1,
546 'dependencies': [ 546 'dependencies': [
547 '../base/base.gyp:base', 547 '../base/base.gyp:base',
548 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 548 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
549 '../net/net.gyp:net', 549 '../net/net.gyp:net',
550 '../third_party/zlib/zlib.gyp:minizip', 550 '../third_party/zlib/zlib.gyp:minizip',
551 '../third_party/zlib/zlib.gyp:zlib', 551 '../third_party/zlib/zlib.gyp:zlib',
552 '../ui/events/events.gyp:events',
553 '../ui/gfx/gfx.gyp:gfx', 552 '../ui/gfx/gfx.gyp:gfx',
554 '../ui/ui.gyp:ui', 553 '../ui/ui.gyp:ui',
555 '../url/url.gyp:url_lib', 554 '../url/url.gyp:url_lib',
556 ], 555 ],
557 'include_dirs': [ 556 'include_dirs': [
558 '..', 557 '..',
559 '<(SHARED_INTERMEDIATE_DIR)', 558 '<(SHARED_INTERMEDIATE_DIR)',
560 ], 559 ],
561 'direct_dependent_settings': { 560 'direct_dependent_settings': {
562 'include_dirs': [ 561 'include_dirs': [
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 'target_name': 'chromedriver_lib', 731 'target_name': 'chromedriver_lib',
733 'type': 'static_library', 732 'type': 'static_library',
734 'hard_dependency': 1, 733 'hard_dependency': 1,
735 'dependencies': [ 734 'dependencies': [
736 'automation_client_lib', 735 'automation_client_lib',
737 '../base/base.gyp:base', 736 '../base/base.gyp:base',
738 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 737 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
739 '../crypto/crypto.gyp:crypto', 738 '../crypto/crypto.gyp:crypto',
740 '../net/net.gyp:http_server', 739 '../net/net.gyp:http_server',
741 '../net/net.gyp:net', 740 '../net/net.gyp:net',
742 '../ui/events/events.gyp:events', 741 '../ui/events/events.gyp:events_base',
743 '../ui/gfx/gfx.gyp:gfx', 742 '../ui/gfx/gfx.gyp:gfx',
744 '../ui/ui.gyp:ui', 743 '../ui/ui.gyp:ui',
745 ], 744 ],
746 'include_dirs': [ 745 'include_dirs': [
747 '..', 746 '..',
748 ], 747 ],
749 'sources': [ 748 'sources': [
750 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/version.cc', 749 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/version.cc',
751 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/version.h', 750 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/version.h',
752 '../third_party/webdriver/atoms.cc', 751 '../third_party/webdriver/atoms.cc',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 { 833 {
835 'target_name': 'chromedriver_unittests', 834 'target_name': 'chromedriver_unittests',
836 'type': 'executable', 835 'type': 'executable',
837 'dependencies': [ 836 'dependencies': [
838 'chromedriver_lib', 837 'chromedriver_lib',
839 '../base/base.gyp:base', 838 '../base/base.gyp:base',
840 '../base/base.gyp:run_all_unittests', 839 '../base/base.gyp:run_all_unittests',
841 '../net/net.gyp:http_server', 840 '../net/net.gyp:http_server',
842 '../net/net.gyp:net', 841 '../net/net.gyp:net',
843 '../testing/gtest.gyp:gtest', 842 '../testing/gtest.gyp:gtest',
844 '../ui/events/events.gyp:events',
845 '../ui/gfx/gfx.gyp:gfx', 843 '../ui/gfx/gfx.gyp:gfx',
846 '../ui/ui.gyp:ui', 844 '../ui/ui.gyp:ui',
847 ], 845 ],
848 'include_dirs': [ 846 'include_dirs': [
849 '..,' 847 '..,'
850 ], 848 ],
851 'sources': [ 849 'sources': [
852 '<@(chromedriver_unittest_sources)', 850 '<@(chromedriver_unittest_sources)',
853 ], 851 ],
854 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 852 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
855 'msvs_disabled_warnings': [ 4267, ], 853 'msvs_disabled_warnings': [ 4267, ],
856 }, 854 },
857 # TODO(kkania): Remove when infra no longer references this. 855 # TODO(kkania): Remove when infra no longer references this.
858 { 856 {
859 'target_name': 'chromedriver2_unittests', 857 'target_name': 'chromedriver2_unittests',
860 'type': 'executable', 858 'type': 'executable',
861 'dependencies': [ 859 'dependencies': [
862 'chromedriver_lib', 860 'chromedriver_lib',
863 '../base/base.gyp:base', 861 '../base/base.gyp:base',
864 '../base/base.gyp:run_all_unittests', 862 '../base/base.gyp:run_all_unittests',
865 '../net/net.gyp:http_server', 863 '../net/net.gyp:http_server',
866 '../net/net.gyp:net', 864 '../net/net.gyp:net',
867 '../testing/gtest.gyp:gtest', 865 '../testing/gtest.gyp:gtest',
868 '../ui/events/events.gyp:events',
869 '../ui/gfx/gfx.gyp:gfx', 866 '../ui/gfx/gfx.gyp:gfx',
870 '../ui/ui.gyp:ui', 867 '../ui/ui.gyp:ui',
871 ], 868 ],
872 'include_dirs': [ 869 'include_dirs': [
873 '..,' 870 '..,'
874 ], 871 ],
875 'sources': [ 872 'sources': [
876 '<@(chromedriver_unittest_sources)', 873 '<@(chromedriver_unittest_sources)',
877 ], 874 ],
878 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 875 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
(...skipping 2353 matching lines...) Expand 10 before | Expand all | Expand 10 after
3232 'utility', 3229 'utility',
3233 ], 3230 ],
3234 'sources': [ 3231 'sources': [
3235 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3232 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3236 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3233 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3237 ], 3234 ],
3238 }] 3235 }]
3239 }], 3236 }],
3240 ], # 'conditions' 3237 ], # 'conditions'
3241 } 3238 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | components/autofill.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698