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

Side by Side 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 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 8
9 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("../../chrome_browser_ui.gypi") ], 10 [ rebase_path("../../chrome_browser_ui.gypi") ],
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 "//chrome") 160 "//chrome")
161 } 161 }
162 if (enable_task_manager) { 162 if (enable_task_manager) {
163 sources += rebase_path(gypi_values.chrome_browser_ui_task_manager_sources, 163 sources += rebase_path(gypi_values.chrome_browser_ui_task_manager_sources,
164 ".", 164 ".",
165 "//chrome") 165 "//chrome")
166 if (!toolkit_views || is_mac) { 166 if (!toolkit_views || is_mac) {
167 sources -= [ "views/task_manager_view.cc" ] 167 sources -= [ "views/task_manager_view.cc" ]
168 } 168 }
169 } 169 }
170 if (!enable_nacl) { 170 if (enable_nacl) {
171 sources += 171 sources +=
172 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome") 172 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome")
173 deps += [ 173 deps += [ "//native_client/src/trusted/service_runtime:sel" ]
174 #"//native_client/src/trusted/service_runtime/service_runtime.gyp:sel", T ODO(GYP)
175 ]
176 } 174 }
177 if (enable_configuration_policy) { 175 if (enable_configuration_policy) {
178 sources += rebase_path(gypi_values.chrome_browser_ui_policy_sources, 176 sources += rebase_path(gypi_values.chrome_browser_ui_policy_sources,
179 ".", 177 ".",
180 "//chrome") 178 "//chrome")
181 deps += [ "//components/policy" ] 179 deps += [ "//components/policy" ]
182 } 180 }
183 if (enable_plugins) { 181 if (enable_plugins) {
184 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources, 182 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources,
185 ".", 183 ".",
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 "//chrome/browser", 523 "//chrome/browser",
526 "//content/public/browser", 524 "//content/public/browser",
527 "//content/public/common", 525 "//content/public/common",
528 "//content/test:test_support", 526 "//content/test:test_support",
529 "//net:test_support", 527 "//net:test_support",
530 "//skia", 528 "//skia",
531 "//testing/gtest", 529 "//testing/gtest",
532 "//ui/base", 530 "//ui/base",
533 ] 531 ]
534 } 532 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698