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

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 1438903002: p1 mus+ash chrome renders ui and content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more review Created 5 years, 1 month 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 "//components/proximity_auth/webui", 144 "//components/proximity_auth/webui",
145 "//device/bluetooth", 145 "//device/bluetooth",
146 "//third_party/libusb", 146 "//third_party/libusb",
147 ] 147 ]
148 148
149 if (is_android) { 149 if (is_android) {
150 deps -= [ "//third_party/libusb" ] 150 deps -= [ "//third_party/libusb" ]
151 } 151 }
152 } 152 }
153 153
154 if (use_aura) {
155 defines += [ "MOJO_RUNNER_CLIENT" ]
156 }
157
154 if (enable_basic_printing || enable_print_preview) { 158 if (enable_basic_printing || enable_print_preview) {
155 deps += [ "//printing" ] 159 deps += [ "//printing" ]
156 } 160 }
157 161
158 if (enable_nacl) { 162 if (enable_nacl) {
159 sources += 163 sources +=
160 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome") 164 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome")
161 deps += [ "//native_client/src/trusted/service_runtime:sel" ] 165 deps += [ "//native_client/src/trusted/service_runtime:sel" ]
162 } 166 }
163 if (enable_configuration_policy) { 167 if (enable_configuration_policy) {
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 "//chrome/browser", 594 "//chrome/browser",
591 "//content/public/browser", 595 "//content/public/browser",
592 "//content/public/common", 596 "//content/public/common",
593 "//content/test:test_support", 597 "//content/test:test_support",
594 "//net:test_support", 598 "//net:test_support",
595 "//skia", 599 "//skia",
596 "//testing/gtest", 600 "//testing/gtest",
597 "//ui/base", 601 "//ui/base",
598 ] 602 ]
599 } 603 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698