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

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

Issue 2920013002: Use pdf compositor service for printing when OOPIF is enabled
Patch Set: fix due to 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",
Lei Zhang 2017/09/08 07:50:53 I think you can omit the colon and everything afte
Wei Li 2017/09/08 22:57:47 Done.
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 2471 matching lines...) Expand 10 before | Expand all | Expand 10 after
3627 deps += [ 3630 deps += [
3628 "//chrome/test:test_support_ui", 3631 "//chrome/test:test_support_ui",
3629 "//components/zoom", 3632 "//components/zoom",
3630 ] 3633 ]
3631 } 3634 }
3632 3635
3633 if (enable_extensions) { 3636 if (enable_extensions) {
3634 deps += [ "//extensions/browser" ] 3637 deps += [ "//extensions/browser" ]
3635 } 3638 }
3636 } 3639 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698