[Icons NTP] Add chrome://large-icon host, which resizes icon and renders fallback.
[chromium-blink-merge.git] / extensions / extensions_tests.gyp
blobe68f2741c752197758ff6a22bcaec8e6b09d9b6a
2   'includes': [
3     'extensions_tests.gypi',
4   ],
5   'variables': {
6     # Product name is used for Mac bundle.
7     'app_shell_product_name': 'App Shell',
8     # The version is high enough to be supported by Omaha (at least 31)
9     # but fake enough to be obviously not a Chrome release.
10     'app_shell_version': '38.1234.5678.9',
11     'chromium_code': 1,
12   },
13   'targets': [
14     {
15       'target_name': 'extensions_unittests',
16       'type': 'executable',
17       'dependencies': [
18         '../base/base.gyp:base',
19         '../base/base.gyp:test_support_base',
20         '../components/components.gyp:keyed_service_content',
21         '../components/components.gyp:user_prefs',
22         '../content/content_shell_and_tests.gyp:test_support_content',
23         '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks',
24         '../device/serial/serial.gyp:device_serial',
25         '../device/serial/serial.gyp:device_serial_test_util',
26         '../mojo/mojo_base.gyp:mojo_environment_chromium',
27         '../testing/gmock.gyp:gmock',
28         '../testing/gtest.gyp:gtest',
29         '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
30         '../third_party/mojo/mojo_edk.gyp:mojo_js_lib',
31         '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
32         '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
33         '../third_party/mojo/mojo_public.gyp:mojo_application_bindings',
34         'common/api/api.gyp:cast_channel_proto',
35         'extensions.gyp:extensions_browser',
36         'extensions.gyp:extensions_common',
37         'extensions.gyp:extensions_renderer',
38         'extensions.gyp:extensions_shell_and_test_pak',
39         'extensions.gyp:extensions_test_support',
40         'extensions.gyp:extensions_utility',
41         'extensions_resources.gyp:extensions_resources',
42         'extensions_strings.gyp:extensions_strings',
43       ],
44       # Needed for third_party libraries like leveldb.
45       'include_dirs': [
46         '..',
47       ],
48       'sources': [
49         '<@(extensions_unittests_sources)',
50       ],
51       # Disable c4267 warnings until we fix size_t to int truncations.
52       'msvs_disabled_warnings': [ 4267, ],
53       'conditions': [
54         ['OS=="win" and win_use_allocator_shim==1', {
55           'dependencies': [
56             '../base/allocator/allocator.gyp:allocator',
57           ],
58         }],
59         ['chromeos==1', {
60           'dependencies': [
61             '<(DEPTH)/chromeos/chromeos.gyp:chromeos_test_support',
62           ],
63         }],
64       ],
65     },
66     {
67       # GN version: //extensions:extensions_browsertests
68       'target_name': 'extensions_browsertests',
69       'type': '<(gtest_target_type)',
70       'dependencies': [
71         'extensions.gyp:extensions_test_support',
72         'shell/app_shell.gyp:app_shell_lib',
73         # TODO(yoz): find the right deps
74         '<(DEPTH)/base/base.gyp:test_support_base',
75         '<(DEPTH)/content/content.gyp:content_app_both',
76         '<(DEPTH)/content/content_shell_and_tests.gyp:content_browser_test_support',
77         '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content',
78         '<(DEPTH)/device/bluetooth/bluetooth.gyp:device_bluetooth_mocks',
79         '<(DEPTH)/testing/gmock.gyp:gmock',
80         '<(DEPTH)/testing/gtest.gyp:gtest',
81       ],
82       'defines': [
83         'HAS_OUT_OF_PROC_TEST_RUNNER',
84       ],
85       'sources': [
86         '<@(extensions_browsertests_sources)',
87       ],
88       'conditions': [
89         ['OS=="win" and win_use_allocator_shim==1', {
90           'dependencies': [
91             '<(DEPTH)/base/allocator/allocator.gyp:allocator',
92           ],
93         }],
94         ['OS=="mac"', {
95           'dependencies': [
96             'shell/app_shell.gyp:app_shell',  # Needed for App Shell.app's Helper.
97           ],
98         }],
99         # This is only here to keep gyp happy. This target never builds on
100         # mobile platforms.
101         ['OS != "ios" and OS != "android"', {
102           'dependencies': [
103             '<(DEPTH)/components/components.gyp:storage_monitor_test_support',
104           ],
105         }],
106       ]
107     },
108   ],
109   'conditions': [
110     ['test_isolation_mode != "noop"', {
111       'targets': [
112         {
113           'target_name': 'extensions_browsertests_run',
114           'type': 'none',
115           'dependencies': [
116             'extensions_browsertests',
117           ],
118           'includes': [
119             '../build/isolate.gypi',
120           ],
121           'sources': [
122             'extensions_browsertests.isolate',
123           ],
124         },
125       ],
126     }],
127   ],