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

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

Issue 1480303002: Implement a basic PPAPI plugin for Blink layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android after https://codereview.chromium.org/1478633002 Created 5 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
« no previous file with comments | « content/renderer/pepper/event_conversion.cc ('k') | content/shell/app/shell_main_delegate.cc » ('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/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/manifest.gni") 8 import("//build/config/win/manifest.gni")
9 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 "//ui/gfx", 230 "//ui/gfx",
231 "//ui/gfx/geometry", 231 "//ui/gfx/geometry",
232 "//ui/gfx/ipc", 232 "//ui/gfx/ipc",
233 "//ui/gl", 233 "//ui/gl",
234 "//url", 234 "//url",
235 "//v8", 235 "//v8",
236 236
237 #'copy_test_netscape_plugin', TODO(GYP) 237 #'copy_test_netscape_plugin', TODO(GYP)
238 ] 238 ]
239 if (enable_plugins) { 239 if (enable_plugins) {
240 deps += [ "//content/ppapi_plugin" ] 240 deps += [
241 "//content/ppapi_plugin",
242 "//ppapi:blink_test_plugin",
243 ]
241 } 244 }
242 245
243 if (is_win) { 246 if (is_win) {
244 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) 247 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP)
245 sources += [ 248 sources += [
246 "common/v8_breakpad_support_win.cc", 249 "common/v8_breakpad_support_win.cc",
247 "common/v8_breakpad_support_win.h", 250 "common/v8_breakpad_support_win.h",
248 ] 251 ]
249 } 252 }
250 253
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 sources = [ 485 sources = [
483 "app/shell_content_main.cc", 486 "app/shell_content_main.cc",
484 "app/shell_content_main.h", 487 "app/shell_content_main.h",
485 ] 488 ]
486 489
487 deps = [ 490 deps = [
488 ":content_shell_lib", 491 ":content_shell_lib",
489 ] 492 ]
490 } 493 }
491 } 494 }
OLDNEW
« no previous file with comments | « content/renderer/pepper/event_conversion.cc ('k') | content/shell/app/shell_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698