| OLD | NEW |
| 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/sysroot.gni") | 6 import("//build/config/sysroot.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//pdf/features.gni") | 8 import("//pdf/features.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 defines += [ "PRINT_BACKEND_AVAILABLE" ] | 182 defines += [ "PRINT_BACKEND_AVAILABLE" ] |
| 183 | 183 |
| 184 if (is_chromeos) { | 184 if (is_chromeos) { |
| 185 sources += [ | 185 sources += [ |
| 186 "backend/cups_connection.cc", | 186 "backend/cups_connection.cc", |
| 187 "backend/cups_connection.h", | 187 "backend/cups_connection.h", |
| 188 "backend/cups_deleters.cc", | 188 "backend/cups_deleters.cc", |
| 189 "backend/cups_deleters.h", | 189 "backend/cups_deleters.h", |
| 190 "backend/cups_ipp_util.cc", | 190 "backend/cups_ipp_util.cc", |
| 191 "backend/cups_ipp_util.h", | 191 "backend/cups_ipp_util.h", |
| 192 "backend/cups_jobs.cc", |
| 193 "backend/cups_jobs.h", |
| 192 "backend/cups_printer.cc", | 194 "backend/cups_printer.cc", |
| 193 "backend/cups_printer.h", | 195 "backend/cups_printer.h", |
| 194 "backend/print_backend_cups_ipp.cc", | 196 "backend/print_backend_cups_ipp.cc", |
| 195 "backend/print_backend_cups_ipp.h", | 197 "backend/print_backend_cups_ipp.h", |
| 196 "printing_context_chromeos.cc", | 198 "printing_context_chromeos.cc", |
| 197 "printing_context_chromeos.h", | 199 "printing_context_chromeos.h", |
| 198 ] | 200 ] |
| 199 } else { | 201 } else { |
| 200 sources += [ | 202 sources += [ |
| 201 "backend/cups_helper.cc", | 203 "backend/cups_helper.cc", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 "android/java/src/org/chromium/printing/PrintManagerDelegate.java", | 335 "android/java/src/org/chromium/printing/PrintManagerDelegate.java", |
| 334 "android/java/src/org/chromium/printing/PrintManagerDelegateImpl.java", | 336 "android/java/src/org/chromium/printing/PrintManagerDelegateImpl.java", |
| 335 "android/java/src/org/chromium/printing/Printable.java", | 337 "android/java/src/org/chromium/printing/Printable.java", |
| 336 "android/java/src/org/chromium/printing/PrintingContext.java", | 338 "android/java/src/org/chromium/printing/PrintingContext.java", |
| 337 "android/java/src/org/chromium/printing/PrintingContextInterface.java", | 339 "android/java/src/org/chromium/printing/PrintingContextInterface.java", |
| 338 "android/java/src/org/chromium/printing/PrintingController.java", | 340 "android/java/src/org/chromium/printing/PrintingController.java", |
| 339 "android/java/src/org/chromium/printing/PrintingControllerImpl.java", | 341 "android/java/src/org/chromium/printing/PrintingControllerImpl.java", |
| 340 ] | 342 ] |
| 341 } | 343 } |
| 342 } | 344 } |
| OLD | NEW |