| 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/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//chrome/chrome_tests.gni") | 9 import("//chrome/chrome_tests.gni") |
| 10 import("//chrome/test/base/js2gtest.gni") | 10 import("//chrome/test/base/js2gtest.gni") |
| (...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 if (!enable_app_list) { | 570 if (!enable_app_list) { |
| 571 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] | 571 sources -= [ "../browser/ui/webui/app_list/start_page_browsertest.js" ] |
| 572 } | 572 } |
| 573 if (!enable_supervised_users) { | 573 if (!enable_supervised_users) { |
| 574 sources -= | 574 sources -= |
| 575 [ "../browser/ui/webui/downloads_ui_supervised_browsertest.js" ] | 575 [ "../browser/ui/webui/downloads_ui_supervised_browsertest.js" ] |
| 576 } | 576 } |
| 577 if (!enable_print_preview) { | 577 if (!enable_print_preview) { |
| 578 sources -= [ "data/webui/print_preview.js" ] | 578 sources -= [ "data/webui/print_preview.js" ] |
| 579 } | 579 } |
| 580 if (enable_media_router) { | |
| 581 sources += | |
| 582 [ "data/webui/media_router/media_router_elements_browsertest.js" ] | |
| 583 } | |
| 584 deps = [ | 580 deps = [ |
| 585 "//chrome/browser/ui", | 581 "//chrome/browser/ui", |
| 586 "//skia", | 582 "//skia", |
| 587 ] | 583 ] |
| 588 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 584 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 589 } | 585 } |
| 590 | 586 |
| 591 # TODO(GYP): Delete this after we've converted everything to GN. | 587 # TODO(GYP): Delete this after we've converted everything to GN. |
| 592 # The _run targets exist only for compatibility w/ GYP. | 588 # The _run targets exist only for compatibility w/ GYP. |
| 593 group("tab_capture_end2end_tests_run") { | 589 group("tab_capture_end2end_tests_run") { |
| (...skipping 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1958 "//third_party/mojo/src/mojo/edk/system", | 1954 "//third_party/mojo/src/mojo/edk/system", |
| 1959 ] | 1955 ] |
| 1960 | 1956 |
| 1961 if (!is_android && use_ash) { | 1957 if (!is_android && use_ash) { |
| 1962 sources += rebase_path( | 1958 sources += rebase_path( |
| 1963 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, | 1959 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, |
| 1964 ".", | 1960 ".", |
| 1965 "//chrome") | 1961 "//chrome") |
| 1966 } | 1962 } |
| 1967 } | 1963 } |
| OLD | NEW |