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

Unified Diff: components/nacl/BUILD.gn

Issue 1042453002: Fix all errors reported by 'gn check' in components/nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert change in .gn Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/BUILD.gn
diff --git a/components/nacl/BUILD.gn b/components/nacl/BUILD.gn
index b67835ccc154061291fc0c18c68a1b5f171e5c7d..f1d518ee048843829f61ff365c9d22cbbb96fb7d 100644
--- a/components/nacl/BUILD.gn
+++ b/components/nacl/BUILD.gn
@@ -26,13 +26,19 @@ if (enable_nacl) {
]
deps = [
+ ":nacl_common",
+ ":nacl_switches",
"//base",
"//base:base_static",
+ "//content/public/common",
+ "//crypto",
"//ipc",
"//mojo/nacl:monacl_sel",
"//native_client/src/trusted/service_runtime:sel_main_chrome",
+ "//ppapi/c",
"//ppapi/proxy:ipc",
"//ppapi/shared_impl",
+ "//third_party/mojo/src/mojo/edk/embedder",
]
if (enable_nacl_untrusted) {
@@ -76,8 +82,18 @@ if (enable_nacl) {
deps = [
":nacl_common",
":nacl_switches",
+ ":nacl_helper",
+ "//base",
+ "//base/third_party/dynamic_annotations",
+ "//content/public/browser",
+ "//content/public/common",
+ "//ipc",
"//native_client/src/trusted/service_runtime:sel_main_chrome",
- "//content//public/browser",
+ "//net",
+ "//ppapi/host",
+ "//ppapi/proxy:ipc",
+ "//ppapi/shared_impl",
+ "//sandbox/linux:sandbox_services",
]
if (is_linux) {
@@ -120,10 +136,19 @@ if (enable_nacl) {
deps = [
":nacl_common",
+ ":nacl_switches",
"renderer/plugin:nacl_trusted_plugin",
+ "//base",
+ "//content/public/common",
"//content/public/renderer",
- "//third_party/jsoncpp",
+ "//ipc",
+ "//net",
+ "//ppapi/c",
+ "//ppapi/proxy:ipc",
+ "//ppapi/shared_impl",
+ "//ppapi/thunk",
"//third_party/WebKit/public:blink",
+ "//third_party/jsoncpp",
]
}
@@ -147,8 +172,15 @@ if (enable_nacl) {
]
deps = [
+ ":nacl",
":nacl_linux",
+ ":nacl_switches",
+ "//base",
+ "//content/public/common",
+ "//crypto",
+ "//ipc",
"//mojo/nacl:monacl_sel",
+ "//sandbox/linux:libc_urandom_override",
]
cflags = [ "-fPIE" ]
@@ -201,11 +233,17 @@ if (enable_nacl) {
":nacl",
":nacl_common",
":nacl_switches",
+ "//base",
"//components/tracing",
+ "//content/public/common",
"//crypto",
+ "//ipc",
+ "//ppapi/c",
"//ppapi/proxy",
- "//sandbox/linux:libc_urandom_override",
+ "//ppapi/shared_impl",
"//sandbox",
+ "//sandbox/linux:libc_urandom_override",
+ "//sandbox/linux:sandbox_services_headers",
]
if (use_glib) {
@@ -254,7 +292,11 @@ source_set("nacl_common") {
]
deps = [
+ ":nacl_switches",
+ "//base",
"//content/public/common",
+ "//ipc",
+ "//url",
]
if (is_linux) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698