| 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("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 if (is_mac) { | 9 if (is_mac) { |
| 10 import("//build/config/mac/mac_sdk.gni") | 10 import("//build/config/mac/mac_sdk.gni") |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "print_settings.cc", | 51 "print_settings.cc", |
| 52 "print_settings.h", | 52 "print_settings.h", |
| 53 "print_settings_conversion.cc", | 53 "print_settings_conversion.cc", |
| 54 "print_settings_conversion.h", | 54 "print_settings_conversion.h", |
| 55 "print_settings_initializer_mac.cc", | 55 "print_settings_initializer_mac.cc", |
| 56 "print_settings_initializer_mac.h", | 56 "print_settings_initializer_mac.h", |
| 57 "print_settings_initializer_win.cc", | 57 "print_settings_initializer_win.cc", |
| 58 "print_settings_initializer_win.h", | 58 "print_settings_initializer_win.h", |
| 59 "printed_document.cc", | 59 "printed_document.cc", |
| 60 "printed_document.h", | 60 "printed_document.h", |
| 61 "printed_document_linux.cc", | |
| 62 "printed_document_mac.cc", | 61 "printed_document_mac.cc", |
| 63 "printed_document_win.cc", | 62 "printed_document_win.cc", |
| 64 "printed_page.cc", | 63 "printed_page.cc", |
| 65 "printed_page.h", | 64 "printed_page.h", |
| 66 "printed_pages_source.h", | 65 "printed_pages_source.h", |
| 67 "printing_context.cc", | 66 "printing_context.cc", |
| 68 "printing_context.h", | 67 "printing_context.h", |
| 69 "printing_utils.cc", | 68 "printing_utils.cc", |
| 70 "printing_utils.h", | 69 "printing_utils.h", |
| 71 "units.cc", | 70 "units.cc", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 if (is_chromeos) { | 171 if (is_chromeos) { |
| 173 sources += [ | 172 sources += [ |
| 174 "backend/cups_connection.cc", | 173 "backend/cups_connection.cc", |
| 175 "backend/cups_connection.h", | 174 "backend/cups_connection.h", |
| 176 "backend/cups_ipp_util.cc", | 175 "backend/cups_ipp_util.cc", |
| 177 "backend/cups_ipp_util.h", | 176 "backend/cups_ipp_util.h", |
| 178 "backend/cups_printer.cc", | 177 "backend/cups_printer.cc", |
| 179 "backend/cups_printer.h", | 178 "backend/cups_printer.h", |
| 180 "backend/print_backend_cups_ipp.cc", | 179 "backend/print_backend_cups_ipp.cc", |
| 181 "backend/print_backend_cups_ipp.h", | 180 "backend/print_backend_cups_ipp.h", |
| 181 "printed_document_chromeos.cc", |
| 182 "printing_context_chromeos.cc", |
| 183 "printing_context_chromeos.h", |
| 182 ] | 184 ] |
| 183 } else { | 185 } else { |
| 184 sources += [ | 186 sources += [ |
| 185 "backend/cups_helper.cc", | 187 "backend/cups_helper.cc", |
| 186 "backend/cups_helper.h", | 188 "backend/cups_helper.h", |
| 187 "backend/print_backend_cups.cc", | 189 "backend/print_backend_cups.cc", |
| 188 "backend/print_backend_cups.h", | 190 "backend/print_backend_cups.h", |
| 189 ] | 191 ] |
| 190 } | 192 } |
| 191 } | 193 } |
| 192 | 194 |
| 193 if (is_chromeos) { | 195 if (is_chromeos) { |
| 194 defines += [ "PRINT_BACKEND_AVAILABLE" ] | 196 defines += [ "PRINT_BACKEND_AVAILABLE" ] |
| 195 | 197 |
| 196 sources += [ | 198 sources += [ |
| 197 "backend/print_backend_chromeos.cc", | 199 "backend/print_backend_chromeos.cc", |
| 198 "printing_context_no_system_dialog.cc", | 200 "printing_context_no_system_dialog.cc", |
| 199 "printing_context_no_system_dialog.h", | 201 "printing_context_no_system_dialog.h", |
| 200 ] | 202 ] |
| 201 } else if (is_linux) { # Non-ChromeOS Linux. | 203 } else if (is_linux) { # Non-ChromeOS Linux. |
| 202 sources += [ | 204 sources += [ |
| 205 "printed_document_linux.cc", |
| 203 "printing_context_linux.cc", | 206 "printing_context_linux.cc", |
| 204 "printing_context_linux.h", | 207 "printing_context_linux.h", |
| 205 ] | 208 ] |
| 206 } | 209 } |
| 207 | 210 |
| 208 if (is_android) { | 211 if (is_android) { |
| 209 sources += [ | 212 sources += [ |
| 210 "printing_context_android.cc", | 213 "printing_context_android.cc", |
| 211 "printing_context_android.h", | 214 "printing_context_android.h", |
| 212 ] | 215 ] |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 "android/java/src/org/chromium/printing/PrintManagerDelegate.java", | 303 "android/java/src/org/chromium/printing/PrintManagerDelegate.java", |
| 301 "android/java/src/org/chromium/printing/PrintManagerDelegateImpl.java", | 304 "android/java/src/org/chromium/printing/PrintManagerDelegateImpl.java", |
| 302 "android/java/src/org/chromium/printing/Printable.java", | 305 "android/java/src/org/chromium/printing/Printable.java", |
| 303 "android/java/src/org/chromium/printing/PrintingContext.java", | 306 "android/java/src/org/chromium/printing/PrintingContext.java", |
| 304 "android/java/src/org/chromium/printing/PrintingContextInterface.java", | 307 "android/java/src/org/chromium/printing/PrintingContextInterface.java", |
| 305 "android/java/src/org/chromium/printing/PrintingController.java", | 308 "android/java/src/org/chromium/printing/PrintingController.java", |
| 306 "android/java/src/org/chromium/printing/PrintingControllerImpl.java", | 309 "android/java/src/org/chromium/printing/PrintingControllerImpl.java", |
| 307 ] | 310 ] |
| 308 } | 311 } |
| 309 } | 312 } |
| OLD | NEW |