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

Side by Side Diff: content/content_tests.gypi

Issue 750633003: Implement HasPermission() method in PermissionService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add dependencies to content_app, content_child and content_ppapi_plugin Created 6 years 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 { 5 {
6 'variables': { 6 'variables': {
7 'layouttest_support_content_sources': [ 7 'layouttest_support_content_sources': [
8 'public/test/layouttest_support.h', 8 'public/test/layouttest_support.h',
9 'public/test/nested_message_pump_android.cc', 9 'public/test/nested_message_pump_android.cc',
10 'public/test/nested_message_pump_android.h', 10 'public/test/nested_message_pump_android.h',
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 ], 192 ],
193 'sources': [ '<@(layouttest_support_content_sources)' ] 193 'sources': [ '<@(layouttest_support_content_sources)' ]
194 }], 194 }],
195 ], 195 ],
196 }, 196 },
197 { 197 {
198 # GN version: //content/test:test_support 198 # GN version: //content/test:test_support
199 'target_name': 'test_support_content', 199 'target_name': 'test_support_content',
200 'type': 'static_library', 200 'type': 'static_library',
201 'dependencies': [ 201 'dependencies': [
202 '../mojo/edk/mojo_edk.gyp:mojo_system_impl',
203 '../mojo/mojo_base.gyp:mojo_environment_chromium',
202 '../net/net.gyp:net_test_support', 204 '../net/net.gyp:net_test_support',
203 '../skia/skia.gyp:skia', 205 '../skia/skia.gyp:skia',
204 '../storage/storage_common.gyp:storage_common', 206 '../storage/storage_common.gyp:storage_common',
205 '../testing/gmock.gyp:gmock', 207 '../testing/gmock.gyp:gmock',
206 '../testing/gtest.gyp:gtest', 208 '../testing/gtest.gyp:gtest',
207 '../ui/accessibility/accessibility.gyp:ax_gen', 209 '../ui/accessibility/accessibility.gyp:ax_gen',
208 '../ui/base/ui_base.gyp:ui_base', 210 '../ui/base/ui_base.gyp:ui_base',
209 '../ui/base/ui_base.gyp:ui_base_test_support', 211 '../ui/base/ui_base.gyp:ui_base_test_support',
210 '../ui/events/events.gyp:dom4_keycode_converter', 212 '../ui/events/events.gyp:dom4_keycode_converter',
211 '../ui/events/events.gyp:events_base', 213 '../ui/events/events.gyp:events_base',
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 ], 370 ],
369 }, 371 },
370 { 372 {
371 'target_name': 'content_unittests', 373 'target_name': 'content_unittests',
372 'type': '<(gtest_target_type)', 374 'type': '<(gtest_target_type)',
373 'dependencies': [ 375 'dependencies': [
374 'browser/service_worker/service_worker_proto.gyp:proto', 376 'browser/service_worker/service_worker_proto.gyp:proto',
375 'browser/speech/proto/speech_proto.gyp:speech_proto', 377 'browser/speech/proto/speech_proto.gyp:speech_proto',
376 'content.gyp:content_browser', 378 'content.gyp:content_browser',
377 'content.gyp:content_common', 379 'content.gyp:content_common',
380 'content_common_mojo_bindings.gyp:content_common_mojo_bindings',
378 'test_support_content', 381 'test_support_content',
379 '../base/base.gyp:test_support_base', 382 '../base/base.gyp:test_support_base',
380 '../crypto/crypto.gyp:crypto', 383 '../crypto/crypto.gyp:crypto',
381 '../device/battery/battery.gyp:device_battery', 384 '../device/battery/battery.gyp:device_battery',
382 '../device/battery/battery.gyp:device_battery_mojo_bindings', 385 '../device/battery/battery.gyp:device_battery_mojo_bindings',
383 '../mojo/edk/mojo_edk.gyp:mojo_common_test_support', 386 '../mojo/edk/mojo_edk.gyp:mojo_common_test_support',
384 '../mojo/mojo_base.gyp:mojo_environment_chromium', 387 '../mojo/mojo_base.gyp:mojo_environment_chromium',
385 '../mojo/public/mojo_public.gyp:mojo_cpp_bindings', 388 '../mojo/public/mojo_public.gyp:mojo_cpp_bindings',
386 '../net/net.gyp:net_test_support', 389 '../net/net.gyp:net_test_support',
387 '../skia/skia.gyp:skia', 390 '../skia/skia.gyp:skia',
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 { 1151 {
1149 'target_name': 'content_browsertests', 1152 'target_name': 'content_browsertests',
1150 'type': '<(gtest_target_type)', 1153 'type': '<(gtest_target_type)',
1151 'dependencies': [ 1154 'dependencies': [
1152 'content.gyp:content_common', 1155 'content.gyp:content_common',
1153 'content.gyp:content_gpu', 1156 'content.gyp:content_gpu',
1154 'content.gyp:content_plugin', 1157 'content.gyp:content_plugin',
1155 'content.gyp:content_renderer', 1158 'content.gyp:content_renderer',
1156 'content.gyp:content_resources', 1159 'content.gyp:content_resources',
1157 'content_browser_test_support', 1160 'content_browser_test_support',
1161 'content_common_mojo_bindings.gyp:content_common_mojo_bindings',
1158 'content_shell_lib', 1162 'content_shell_lib',
1159 'content_shell_pak', 1163 'content_shell_pak',
1160 'test_support_content', 1164 'test_support_content',
1161 'web_ui_test_mojo_bindings', 1165 'web_ui_test_mojo_bindings',
1162 '../base/base.gyp:test_support_base', 1166 '../base/base.gyp:test_support_base',
1163 '../device/battery/battery.gyp:device_battery', 1167 '../device/battery/battery.gyp:device_battery',
1164 '../device/battery/battery.gyp:device_battery_mojo_bindings', 1168 '../device/battery/battery.gyp:device_battery_mojo_bindings',
1165 '../gin/gin.gyp:gin', 1169 '../gin/gin.gyp:gin',
1166 '../gpu/gpu.gyp:gpu', 1170 '../gpu/gpu.gyp:gpu',
1167 '../ipc/ipc.gyp:test_support_ipc', 1171 '../ipc/ipc.gyp:test_support_ipc',
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after
2055 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2059 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2056 }, 2060 },
2057 ], 2061 ],
2058 }], 2062 }],
2059 ], 2063 ],
2060 }, 2064 },
2061 ], 2065 ],
2062 }], 2066 }],
2063 ], 2067 ],
2064 } 2068 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698