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 'includes': [ | 5 'includes': [ |
6 'js_unittest_vars.gypi', | 6 'js_unittest_vars.gypi', |
7 ], | 7 ], |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'test_support_ui', | |
11 'type': 'static_library', | |
12 'dependencies': [ | |
13 'chrome_resources.gyp:chrome_resources', | |
14 'chrome_resources.gyp:chrome_strings', | |
15 'chrome_resources.gyp:theme_resources', | |
16 'test_support_common', | |
17 '../skia/skia.gyp:skia', | |
18 '../testing/gtest.gyp:gtest', | |
19 ], | |
20 'export_dependent_settings': [ | |
21 'test_support_common', | |
22 ], | |
23 'include_dirs': [ | |
24 '..', | |
25 ], | |
26 'sources': [ | |
27 'test/automation/proxy_launcher.cc', | |
28 'test/automation/proxy_launcher.h', | |
29 'test/ui/javascript_test_util.cc', | |
30 'test/ui/ui_perf_test.cc', | |
31 'test/ui/ui_perf_test.h', | |
32 'test/ui/ui_test.cc', | |
33 'test/ui/ui_test.h', | |
34 'test/ui/ui_test_suite.cc', | |
35 'test/ui/ui_test_suite.h', | |
36 ], | |
37 'conditions': [ | |
38 ['OS=="win"', { | |
39 'dependencies': [ | |
40 'chrome.gyp:crash_service', # run time dependency | |
41 ], | |
42 }], | |
43 ['OS=="win" and target_arch=="ia32"', { | |
44 'dependencies': [ | |
45 'chrome.gyp:crash_service_win64', # run time dependency | |
46 ], | |
47 }], | |
48 ['toolkit_uses_gtk == 1', { | |
49 'dependencies': [ | |
50 '../build/linux/system.gyp:gtk', | |
51 ], | |
52 }], | |
53 ], | |
54 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
55 'msvs_disabled_warnings': [ 4267, ], | |
56 }, | |
57 { | |
58 'target_name': 'interactive_ui_tests', | 10 'target_name': 'interactive_ui_tests', |
59 'type': 'executable', | 11 'type': 'executable', |
60 'dependencies': [ | 12 'dependencies': [ |
61 'browser', | 13 'browser', |
62 'chrome_resources.gyp:chrome_resources', | 14 'chrome_resources.gyp:chrome_resources', |
63 'chrome_resources.gyp:chrome_strings', | 15 'chrome_resources.gyp:chrome_strings', |
64 'chrome_resources.gyp:packed_extra_resources', | 16 'chrome_resources.gyp:packed_extra_resources', |
65 'chrome_resources.gyp:packed_resources', | 17 'chrome_resources.gyp:packed_resources', |
66 'debugger', | 18 'debugger', |
67 'renderer', | 19 'renderer', |
68 'test_support_common', | 20 'test_support_common', |
69 # NOTE: don't add test_support_ui, no more UITests. See | |
70 # http://crbug.com/137365 | |
71 '../google_apis/google_apis.gyp:google_apis_test_support', | 21 '../google_apis/google_apis.gyp:google_apis_test_support', |
72 '../third_party/hunspell/hunspell.gyp:hunspell', | 22 '../third_party/hunspell/hunspell.gyp:hunspell', |
73 '../net/net.gyp:net', | 23 '../net/net.gyp:net', |
74 '../net/net.gyp:net_resources', | 24 '../net/net.gyp:net_resources', |
75 '../net/net.gyp:net_test_support', | 25 '../net/net.gyp:net_test_support', |
76 '../skia/skia.gyp:skia', | 26 '../skia/skia.gyp:skia', |
77 '../sync/sync.gyp:sync', | 27 '../sync/sync.gyp:sync', |
78 '../third_party/icu/icu.gyp:icui18n', | 28 '../third_party/icu/icu.gyp:icui18n', |
79 '../third_party/icu/icu.gyp:icuuc', | 29 '../third_party/icu/icu.gyp:icuuc', |
80 '../third_party/libpng/libpng.gyp:libpng', | 30 '../third_party/libpng/libpng.gyp:libpng', |
(...skipping 2936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3017 ['enable_webrtc==1', { | 2967 ['enable_webrtc==1', { |
3018 'dependencies': [ | 2968 'dependencies': [ |
3019 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' | 2969 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' |
3020 ] | 2970 ] |
3021 }], | 2971 }], |
3022 ], | 2972 ], |
3023 }] | 2973 }] |
3024 }], | 2974 }], |
3025 ], # 'conditions' | 2975 ], # 'conditions' |
3026 } | 2976 } |
OLD | NEW |