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

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: Address codereview comment and try to fix Mac 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
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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 "//content/gpu", 208 "//content/gpu",
209 "//content/test:layouttest_support", 209 "//content/test:layouttest_support",
210 "//device/bluetooth", 210 "//device/bluetooth",
211 "//device/bluetooth:mocks", 211 "//device/bluetooth:mocks",
212 "//gin", 212 "//gin",
213 "//gpu", 213 "//gpu",
214 "//ipc", 214 "//ipc",
215 "//media", 215 "//media",
216 "//net", 216 "//net",
217 "//net:net_resources", 217 "//net:net_resources",
218 "//ppapi:blink_test_plugin",
218 "//skia", 219 "//skia",
219 "//storage/browser", 220 "//storage/browser",
220 "//testing/gmock", 221 "//testing/gmock",
221 "//testing/gtest", 222 "//testing/gtest",
222 "//third_party/WebKit/public:blink", 223 "//third_party/WebKit/public:blink",
223 "//third_party/WebKit/public:image_resources", 224 "//third_party/WebKit/public:image_resources",
224 "//third_party/WebKit/public:resources", 225 "//third_party/WebKit/public:resources",
225 "//third_party/WebKit/public:test_support", 226 "//third_party/WebKit/public:test_support",
226 "//third_party/icu", 227 "//third_party/icu",
227 "//ui/base", 228 "//ui/base",
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 sources = [ 483 sources = [
483 "app/shell_content_main.cc", 484 "app/shell_content_main.cc",
484 "app/shell_content_main.h", 485 "app/shell_content_main.h",
485 ] 486 ]
486 487
487 deps = [ 488 deps = [
488 ":content_shell_lib", 489 ":content_shell_lib",
489 ] 490 ]
490 } 491 }
491 } 492 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698