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

Side by Side Diff: printing/BUILD.gn

Issue 857053002: Generate the print messages in components/printing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reordered the generator Created 5 years, 11 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 if (is_mac) { 7 if (is_mac) {
8 import("//build/config/mac/mac_sdk.gni") 8 import("//build/config/mac/mac_sdk.gni")
9 } 9 }
10 if (is_android) { 10 if (is_android) {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 "printed_document.cc", 57 "printed_document.cc",
58 "printed_document.h", 58 "printed_document.h",
59 "printed_document_linux.cc", 59 "printed_document_linux.cc",
60 "printed_document_mac.cc", 60 "printed_document_mac.cc",
61 "printed_document_win.cc", 61 "printed_document_win.cc",
62 "printed_page.cc", 62 "printed_page.cc",
63 "printed_page.h", 63 "printed_page.h",
64 "printed_pages_source.h", 64 "printed_pages_source.h",
65 "printing_context.cc", 65 "printing_context.cc",
66 "printing_context.h", 66 "printing_context.h",
67 "printing_param_traits_macros.h",
67 "printing_utils.cc", 68 "printing_utils.cc",
68 "printing_utils.h", 69 "printing_utils.h",
69 "units.cc", 70 "units.cc",
70 "units.h", 71 "units.h",
71 ] 72 ]
72 73
73 cflags = [] 74 cflags = []
74 defines = [ "PRINTING_IMPLEMENTATION" ] 75 defines = [ "PRINTING_IMPLEMENTATION" ]
75 76
76 deps = [ 77 deps = [
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 } 241 }
241 242
242 # GYP: //printing/printing.gyp:printing_java 243 # GYP: //printing/printing.gyp:printing_java
243 android_library("printing_java") { 244 android_library("printing_java") {
244 deps = [ 245 deps = [
245 "//base:base_java", 246 "//base:base_java",
246 ] 247 ]
247 DEPRECATED_java_in_dir = "android/java/src" 248 DEPRECATED_java_in_dir = "android/java/src"
248 } 249 }
249 } 250 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698