| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 2549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2560 } | 2560 } |
| 2561 if (enable_pepper_cdms) { | 2561 if (enable_pepper_cdms) { |
| 2562 # Runtime dependencies. | 2562 # Runtime dependencies. |
| 2563 data_deps += [ | 2563 data_deps += [ |
| 2564 "//media/cdm/ppapi:clearkeycdmadapter", | 2564 "//media/cdm/ppapi:clearkeycdmadapter", |
| 2565 "//third_party/widevine/cdm:widevinecdmadapter", | 2565 "//third_party/widevine/cdm:widevinecdmadapter", |
| 2566 ] | 2566 ] |
| 2567 } | 2567 } |
| 2568 if (!enable_print_preview) { | 2568 if (!enable_print_preview) { |
| 2569 sources -= [ | 2569 sources -= [ |
| 2570 "../browser/extensions/api/cloud_print_private/cloud_print_private_apite
st.cc", | |
| 2571 "../browser/printing/print_browsertest.cc", | 2570 "../browser/printing/print_browsertest.cc", |
| 2572 "../browser/printing/print_preview_dialog_controller_browsertest.cc", | 2571 "../browser/printing/print_preview_dialog_controller_browsertest.cc", |
| 2573 "../browser/printing/print_preview_pdf_generated_browsertest.cc", | 2572 "../browser/printing/print_preview_pdf_generated_browsertest.cc", |
| 2574 "../browser/service_process/service_process_control_browsertest.cc", | 2573 "../browser/service_process/service_process_control_browsertest.cc", |
| 2575 "../browser/ui/webui/print_preview/print_preview_ui_browsertest.cc", | 2574 "../browser/ui/webui/print_preview/print_preview_ui_browsertest.cc", |
| 2576 ] | 2575 ] |
| 2576 if (enable_extensions) { |
| 2577 sources -= [ "../browser/extensions/api/cloud_print_private/cloud_print_
private_apitest.cc" ] |
| 2578 } |
| 2577 } | 2579 } |
| 2578 if (!enable_print_preview || is_mac || is_chromeos) { | 2580 if (!enable_print_preview || is_mac || is_chromeos) { |
| 2579 sources -= [ | 2581 sources -= [ |
| 2580 # This test depends on GetCommandLineForRelaunch, which is not | 2582 # This test depends on GetCommandLineForRelaunch, which is not |
| 2581 # available on Mac. It is also not intended to run on ChromeOS. | 2583 # available on Mac. It is also not intended to run on ChromeOS. |
| 2582 "../browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc"
, | 2584 "../browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc"
, |
| 2583 ] | 2585 ] |
| 2584 } | 2586 } |
| 2585 if (!enable_print_preview || is_chromeos) { | 2587 if (!enable_print_preview || is_chromeos) { |
| 2586 sources -= [ | 2588 sources -= [ |
| (...skipping 2605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5192 } | 5194 } |
| 5193 | 5195 |
| 5194 if (is_win) { | 5196 if (is_win) { |
| 5195 loadable_module("conflicts_dll") { | 5197 loadable_module("conflicts_dll") { |
| 5196 testonly = true | 5198 testonly = true |
| 5197 sources = [ | 5199 sources = [ |
| 5198 "conflicts/conflicts_dll.cc", | 5200 "conflicts/conflicts_dll.cc", |
| 5199 ] | 5201 ] |
| 5200 } | 5202 } |
| 5201 } | 5203 } |
| OLD | NEW |