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

Side by Side Diff: content/shell/BUILD.gn

Issue 1158063002: Add plugins::TestPluginPlaceholder class and allow its use in Blink layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pluginfix
Patch Set: Created 5 years, 6 months 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
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/renderer/DEPS » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//tools/grit/repack.gni") 7 import("//tools/grit/repack.gni")
8 import("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 "renderer/layout_test/layout_test_content_renderer_client.cc", 157 "renderer/layout_test/layout_test_content_renderer_client.cc",
158 "renderer/layout_test/layout_test_content_renderer_client.h", 158 "renderer/layout_test/layout_test_content_renderer_client.h",
159 "renderer/layout_test/layout_test_render_frame_observer.cc", 159 "renderer/layout_test/layout_test_render_frame_observer.cc",
160 "renderer/layout_test/layout_test_render_frame_observer.h", 160 "renderer/layout_test/layout_test_render_frame_observer.h",
161 "renderer/layout_test/layout_test_render_process_observer.cc", 161 "renderer/layout_test/layout_test_render_process_observer.cc",
162 "renderer/layout_test/layout_test_render_process_observer.h", 162 "renderer/layout_test/layout_test_render_process_observer.h",
163 "renderer/layout_test/leak_detector.cc", 163 "renderer/layout_test/leak_detector.cc",
164 "renderer/layout_test/leak_detector.h", 164 "renderer/layout_test/leak_detector.h",
165 "renderer/layout_test/test_media_stream_renderer_factory.cc", 165 "renderer/layout_test/test_media_stream_renderer_factory.cc",
166 "renderer/layout_test/test_media_stream_renderer_factory.h", 166 "renderer/layout_test/test_media_stream_renderer_factory.h",
167 "renderer/layout_test/test_plugin_placeholder.cc",
168 "renderer/layout_test/test_plugin_placeholder.h",
167 "renderer/layout_test/test_video_frame_provider.cc", 169 "renderer/layout_test/test_video_frame_provider.cc",
168 "renderer/layout_test/test_video_frame_provider.h", 170 "renderer/layout_test/test_video_frame_provider.h",
169 "renderer/shell_content_renderer_client.cc", 171 "renderer/shell_content_renderer_client.cc",
170 "renderer/shell_content_renderer_client.h", 172 "renderer/shell_content_renderer_client.h",
171 "renderer/shell_render_view_observer.cc", 173 "renderer/shell_render_view_observer.cc",
172 "renderer/shell_render_view_observer.h", 174 "renderer/shell_render_view_observer.h",
173 "renderer/test_runner/accessibility_controller.cc", 175 "renderer/test_runner/accessibility_controller.cc",
174 "renderer/test_runner/accessibility_controller.h", 176 "renderer/test_runner/accessibility_controller.h",
175 "renderer/test_runner/app_banner_client.cc", 177 "renderer/test_runner/app_banner_client.cc",
176 "renderer/test_runner/app_banner_client.h", 178 "renderer/test_runner/app_banner_client.h",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 deps = [ 254 deps = [
253 ":resources", 255 ":resources",
254 "//base", 256 "//base",
255 "//base:base_static", 257 "//base:base_static",
256 "//base/allocator", 258 "//base/allocator",
257 "//base/third_party/dynamic_annotations", 259 "//base/third_party/dynamic_annotations",
258 "//cc", 260 "//cc",
259 "//components/crash/app", 261 "//components/crash/app",
260 "//components/devtools_discovery", 262 "//components/devtools_discovery",
261 "//components/devtools_http_handler", 263 "//components/devtools_http_handler",
264 "//components/plugins/renderer",
262 "//components/web_cache/renderer", 265 "//components/web_cache/renderer",
263 "//content:resources", 266 "//content:resources",
264 "//content/app/resources", 267 "//content/app/resources",
265 "//content/app/strings", 268 "//content/app/strings",
266 "//content/gpu", 269 "//content/gpu",
267 "//content/test:layouttest_support", 270 "//content/test:layouttest_support",
268 "//device/bluetooth", 271 "//device/bluetooth",
269 "//device/bluetooth:mocks", 272 "//device/bluetooth:mocks",
270 "//gin", 273 "//gin",
271 "//gpu", 274 "//gpu",
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 579
577 deps = [ 580 deps = [
578 "//base", 581 "//base",
579 "//components/crash/tools:crash_service", 582 "//components/crash/tools:crash_service",
580 ] 583 ]
581 584
582 configs -= [ "//build/config/win:console" ] 585 configs -= [ "//build/config/win:console" ]
583 configs += [ "//build/config/win:windowed" ] 586 configs += [ "//build/config/win:windowed" ]
584 } 587 }
585 } 588 }
OLDNEW
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698