Chromium Code Reviews| 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 3633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3644 "//chrome/test/data/webui:unit_tests_js", | 3644 "//chrome/test/data/webui:unit_tests_js", |
| 3645 "//components/bubble:test_support", | 3645 "//components/bubble:test_support", |
| 3646 ] | 3646 ] |
| 3647 data += [ | 3647 data += [ |
| 3648 "$root_out_dir/test_data/chrome/browser/resources/print_preview/", | 3648 "$root_out_dir/test_data/chrome/browser/resources/print_preview/", |
| 3649 "$root_out_dir/test_data/chrome/renderer/resources/extensions/", | 3649 "$root_out_dir/test_data/chrome/renderer/resources/extensions/", |
| 3650 "$root_out_dir/test_data/ui/webui/", | 3650 "$root_out_dir/test_data/ui/webui/", |
| 3651 ] | 3651 ] |
| 3652 } | 3652 } |
| 3653 | 3653 |
| 3654 if (is_desktop_linux && enable_native_notifications) { | |
|
Lei Zhang
2017/04/29 01:35:05
Curiuos why the mac version isn't gated on similar
Tom (Use chromium acct)
2017/05/01 18:25:29
The mac version doesn't need to be conditioned on
| |
| 3655 sources += [ "../browser/notifications/notification_platform_bridge_linux_un ittest.cc" ] | |
| 3656 } | |
| 3657 | |
| 3654 if (is_linux || is_win) { | 3658 if (is_linux || is_win) { |
| 3655 sources += [ "../browser/webshare/share_service_impl_unittest.cc" ] | 3659 sources += [ "../browser/webshare/share_service_impl_unittest.cc" ] |
| 3656 } | 3660 } |
| 3657 | 3661 |
| 3658 if (is_chromeos) { | 3662 if (is_chromeos) { |
| 3659 sources -= [ "../browser/signin/chrome_signin_status_metrics_provider_delega te_unittest.cc" ] | 3663 sources -= [ "../browser/signin/chrome_signin_status_metrics_provider_delega te_unittest.cc" ] |
| 3660 } | 3664 } |
| 3661 if (enable_background) { | 3665 if (enable_background) { |
| 3662 sources += [ | 3666 sources += [ |
| 3663 "../browser/background/background_application_list_model_unittest.cc", | 3667 "../browser/background/background_application_list_model_unittest.cc", |
| (...skipping 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 5017 } | 5021 } |
| 5018 | 5022 |
| 5019 if (is_win) { | 5023 if (is_win) { |
| 5020 loadable_module("conflicts_dll") { | 5024 loadable_module("conflicts_dll") { |
| 5021 testonly = true | 5025 testonly = true |
| 5022 sources = [ | 5026 sources = [ |
| 5023 "conflicts/conflicts_dll.cc", | 5027 "conflicts/conflicts_dll.cc", |
| 5024 ] | 5028 ] |
| 5025 } | 5029 } |
| 5026 } | 5030 } |
| OLD | NEW |