| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 'sources': [ | 225 'sources': [ |
| 226 'printing_context_gtk.cc', | 226 'printing_context_gtk.cc', |
| 227 'printing_context_gtk.h', | 227 'printing_context_gtk.h', |
| 228 ], | 228 ], |
| 229 }], | 229 }], |
| 230 ['OS=="android"', { | 230 ['OS=="android"', { |
| 231 'sources': [ | 231 'sources': [ |
| 232 'printing_context_android.cc', | 232 'printing_context_android.cc', |
| 233 'printing_context_android.h', | 233 'printing_context_android.h', |
| 234 ], | 234 ], |
| 235 » 'dependencies': [ | 235 'dependencies': [ |
| 236 » 'printing_jni_headers', | 236 'printing_jni_headers', |
| 237 » ], | |
| 238 'include_dirs': [ | |
| 239 '<(SHARED_INTERMEDIATE_DIR)/printing', | |
| 240 ], | 237 ], |
| 241 }], | 238 }], |
| 242 ], | 239 ], |
| 243 }, | 240 }, |
| 244 { | 241 { |
| 245 'target_name': 'printing_unittests', | 242 'target_name': 'printing_unittests', |
| 246 'type': 'executable', | 243 'type': 'executable', |
| 247 'dependencies': [ | 244 'dependencies': [ |
| 248 'printing', | 245 'printing', |
| 249 '../testing/gtest.gyp:gtest', | 246 '../testing/gtest.gyp:gtest', |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 }, | 348 }, |
| 352 'dependencies': [ | 349 'dependencies': [ |
| 353 '../base/base.gyp:base_java', | 350 '../base/base.gyp:base_java', |
| 354 ], | 351 ], |
| 355 'includes': [ '../build/java.gypi' ], | 352 'includes': [ '../build/java.gypi' ], |
| 356 } | 353 } |
| 357 ] | 354 ] |
| 358 }], | 355 }], |
| 359 ] | 356 ] |
| 360 } | 357 } |
| OLD | NEW |