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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 221 'sources': [ | 221 'sources': [ |
| 222 'backend/print_backend_chromeos.cc', | 222 'backend/print_backend_chromeos.cc', |
| 223 ], | 223 ], |
| 224 }], | 224 }], |
| 225 ['toolkit_uses_gtk==1 and chromeos==0', { | 225 ['toolkit_uses_gtk==1 and chromeos==0', { |
| 226 'sources': [ | 226 'sources': [ |
| 227 'printing_context_gtk.cc', | 227 'printing_context_gtk.cc', |
| 228 'printing_context_gtk.h', | 228 'printing_context_gtk.h', |
| 229 ], | 229 ], |
| 230 }], | 230 }], |
| 231 ['OS=="android"', { | |
| 232 'sources': [ | |
| 233 'printing_context_android.h', | |
|
Lei Zhang
2013/08/13 23:26:37
No printing_context_android.cc? How does that work
whywhat
2013/08/13 23:38:48
We figured that printing will not be compiled for
| |
| 234 ], | |
| 235 }], | |
| 231 ], | 236 ], |
| 232 }, | 237 }, |
| 233 { | 238 { |
| 234 'target_name': 'printing_unittests', | 239 'target_name': 'printing_unittests', |
| 235 'type': 'executable', | 240 'type': 'executable', |
| 236 'dependencies': [ | 241 'dependencies': [ |
| 237 'printing', | 242 'printing', |
| 238 '../testing/gtest.gyp:gtest', | 243 '../testing/gtest.gyp:gtest', |
| 239 '../base/base.gyp:test_support_base', | 244 '../base/base.gyp:test_support_base', |
| 240 '../ui/ui.gyp:ui', | 245 '../ui/ui.gyp:ui', |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 320 '<!@(python cups_config_helper.py --cflags)', | 325 '<!@(python cups_config_helper.py --cflags)', |
| 321 ], | 326 ], |
| 322 }], | 327 }], |
| 323 ], | 328 ], |
| 324 }, | 329 }, |
| 325 }], | 330 }], |
| 326 ], | 331 ], |
| 327 }, | 332 }, |
| 328 ], | 333 ], |
| 329 } | 334 } |
| OLD | NEW |