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

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

Issue 2920013002: Use pdf compositor service for printing when OOPIF is enabled
Patch Set: rebase Created 3 years, 3 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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after
1135 if (enable_extensions) { 1135 if (enable_extensions) {
1136 deps += [ 1136 deps += [
1137 "//apps", 1137 "//apps",
1138 "//apps/ui/views", 1138 "//apps/ui/views",
1139 "//extensions/common:mojo", 1139 "//extensions/common:mojo",
1140 ] 1140 ]
1141 } 1141 }
1142 } 1142 }
1143 1143
1144 if (enable_basic_printing || enable_print_preview) { 1144 if (enable_basic_printing || enable_print_preview) {
1145 deps += [ "//printing" ] 1145 deps += [
1146 "//components/printing/browser:browser",
1147 "//printing:printing",
1148 ]
1146 } 1149 }
1147 1150
1148 if (enable_nacl) { 1151 if (enable_nacl) {
1149 sources += [ 1152 sources += [
1150 "webui/nacl_ui.cc", 1153 "webui/nacl_ui.cc",
1151 "webui/nacl_ui.h", 1154 "webui/nacl_ui.h",
1152 ] 1155 ]
1153 deps += [ "//components/nacl/browser" ] 1156 deps += [ "//components/nacl/browser" ]
1154 } 1157 }
1155 if (enable_plugins) { 1158 if (enable_plugins) {
(...skipping 2465 matching lines...) Expand 10 before | Expand all | Expand 10 after
3621 deps += [ 3624 deps += [
3622 "//chrome/test:test_support_ui", 3625 "//chrome/test:test_support_ui",
3623 "//components/zoom", 3626 "//components/zoom",
3624 ] 3627 ]
3625 } 3628 }
3626 3629
3627 if (enable_extensions) { 3630 if (enable_extensions) {
3628 deps += [ "//extensions/browser" ] 3631 deps += [ "//extensions/browser" ]
3629 } 3632 }
3630 } 3633 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698