| 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/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 if (is_mac) { | 8 if (is_mac) { |
| 9 import("//build/config/mac/mac_sdk.gni") | 9 import("//build/config/mac/mac_sdk.gni") |
| 10 } | 10 } |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 "page_range_unittest.cc", | 194 "page_range_unittest.cc", |
| 195 "page_setup_unittest.cc", | 195 "page_setup_unittest.cc", |
| 196 "pdf_metafile_cg_mac_unittest.cc", | 196 "pdf_metafile_cg_mac_unittest.cc", |
| 197 "printed_page_unittest.cc", | 197 "printed_page_unittest.cc", |
| 198 "printing_context_win_unittest.cc", | 198 "printing_context_win_unittest.cc", |
| 199 "printing_test.h", | 199 "printing_test.h", |
| 200 "printing_utils_unittest.cc", | 200 "printing_utils_unittest.cc", |
| 201 "units_unittest.cc", | 201 "units_unittest.cc", |
| 202 ] | 202 ] |
| 203 | 203 |
| 204 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 205 |
| 204 if (use_cups) { | 206 if (use_cups) { |
| 205 configs += [ ":cups" ] | 207 configs += [ ":cups" ] |
| 206 sources += [ "backend/cups_helper_unittest.cc" ] | 208 sources += [ "backend/cups_helper_unittest.cc" ] |
| 207 } | 209 } |
| 208 | 210 |
| 209 deps = [ | 211 deps = [ |
| 210 ":printing", | 212 ":printing", |
| 211 "//base/allocator", | 213 "//base/allocator", |
| 212 "//base/test:run_all_unittests", | 214 "//base/test:run_all_unittests", |
| 213 "//base/test:test_support", | 215 "//base/test:test_support", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 241 } | 243 } |
| 242 | 244 |
| 243 # GYP: //printing/printing.gyp:printing_java | 245 # GYP: //printing/printing.gyp:printing_java |
| 244 android_library("printing_java") { | 246 android_library("printing_java") { |
| 245 deps = [ | 247 deps = [ |
| 246 "//base:base_java", | 248 "//base:base_java", |
| 247 ] | 249 ] |
| 248 DEPRECATED_java_in_dir = "android/java/src" | 250 DEPRECATED_java_in_dir = "android/java/src" |
| 249 } | 251 } |
| 250 } | 252 } |
| OLD | NEW |