| 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 7 import("//chrome/version.gni") | 7 import("//chrome/version.gni") |
| 8 | 8 |
| 9 gypi_values = exec_script("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 10 [ rebase_path("../chrome_common.gypi") ], | 10 [ rebase_path("../chrome_common.gypi") ], |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 deps += [ ":app_mode_app_support" ] | 160 deps += [ ":app_mode_app_support" ] |
| 161 } | 161 } |
| 162 | 162 |
| 163 if (enable_nacl) { | 163 if (enable_nacl) { |
| 164 deps += [ "//components/nacl:nacl_common" ] | 164 deps += [ "//components/nacl:nacl_common" ] |
| 165 } | 165 } |
| 166 | 166 |
| 167 # Printing. | 167 # Printing. |
| 168 if (enable_basic_printing || enable_print_preview) { | 168 if (enable_basic_printing || enable_print_preview) { |
| 169 deps += [ | 169 deps += [ |
| 170 "//components/printing/common:printing_common", | 170 "//components/printing/common", |
| 171 "//printing", | 171 "//printing", |
| 172 ] | 172 ] |
| 173 if (enable_print_preview) { | 173 if (enable_print_preview) { |
| 174 # Full printing support. | 174 # Full printing support. |
| 175 sources += rebase_path(gypi_values.chrome_common_service_process_sources, | 175 sources += rebase_path(gypi_values.chrome_common_service_process_sources, |
| 176 ".", | 176 ".", |
| 177 "//chrome") | 177 "//chrome") |
| 178 } | 178 } |
| 179 } | 179 } |
| 180 | 180 |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 ":constants", | 354 ":constants", |
| 355 "//base", | 355 "//base", |
| 356 ] | 356 ] |
| 357 } | 357 } |
| 358 | 358 |
| 359 mojom("mojo_bindings") { | 359 mojom("mojo_bindings") { |
| 360 sources = [ | 360 sources = [ |
| 361 "resource_usage_reporter.mojom", | 361 "resource_usage_reporter.mojom", |
| 362 ] | 362 ] |
| 363 } | 363 } |
| OLD | NEW |