Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 198 ], | 198 ], |
| 199 }], | 199 }], |
| 200 ['OS=="linux" and chromeos==1', { | 200 ['OS=="linux" and chromeos==1', { |
| 201 'defines': [ | 201 'defines': [ |
| 202 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation | 202 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |
| 203 # of the print backend and enables a custom implementation instead. | 203 # of the print backend and enables a custom implementation instead. |
| 204 'PRINT_BACKEND_AVAILABLE', | 204 'PRINT_BACKEND_AVAILABLE', |
| 205 ], | 205 ], |
| 206 'sources': [ | 206 'sources': [ |
| 207 'backend/print_backend_chromeos.cc', | 207 'backend/print_backend_chromeos.cc', |
| 208 'printed_document_chromeos.cc', | |
|
Lei Zhang
2016/07/20 01:26:56
Should the changes here match printing/BUILD.gn? I
skau
2016/07/22 23:36:14
I'm counting the days...
| |
| 208 ], | 209 ], |
| 209 }], | 210 }], |
| 210 ['OS=="linux" and chromeos==0', { | 211 ['OS=="linux" and chromeos==0', { |
| 211 'sources': [ | 212 'sources': [ |
| 212 'printed_document_linux.cc', | 213 'printed_document_linux.cc', |
| 213 'printing_context_linux.cc', | 214 'printing_context_linux.cc', |
| 214 'printing_context_linux.h', | 215 'printing_context_linux.h', |
| 215 ], | 216 ], |
| 216 }], | 217 }], |
| 217 ['OS=="android"', { | 218 ['OS=="android"', { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 349 '../build/isolate.gypi', | 350 '../build/isolate.gypi', |
| 350 ], | 351 ], |
| 351 'sources': [ | 352 'sources': [ |
| 352 'printing_unittests.isolate', | 353 'printing_unittests.isolate', |
| 353 ], | 354 ], |
| 354 }, | 355 }, |
| 355 ], | 356 ], |
| 356 }], | 357 }], |
| 357 ] | 358 ] |
| 358 } | 359 } |
| OLD | NEW |