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

Unified Diff: chrome/browser/ui/BUILD.gn

Issue 877553008: Land prep work to enable NaCl in the Linux x64 GN builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean up for review Created 5 years, 10 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
Index: chrome/browser/ui/BUILD.gn
diff --git a/chrome/browser/ui/BUILD.gn b/chrome/browser/ui/BUILD.gn
index 611ca04b7efe7aab05f3faaca4c1af1d33f27e3e..7dabfe6b91c52a0685705060a3cf1d25ba4b4412 100644
--- a/chrome/browser/ui/BUILD.gn
+++ b/chrome/browser/ui/BUILD.gn
@@ -167,12 +167,10 @@ static_library("ui") {
sources -= [ "views/task_manager_view.cc" ]
}
}
- if (!enable_nacl) {
+ if (enable_nacl) {
sources +=
rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome")
- deps += [
- #"//native_client/src/trusted/service_runtime/service_runtime.gyp:sel", TODO(GYP)
- ]
+ deps += [ "//native_client/src/trusted/service_runtime:sel" ]
}
if (enable_configuration_policy) {
sources += rebase_path(gypi_values.chrome_browser_ui_policy_sources,

Powered by Google App Engine
This is Rietveld 408576698