Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Side by Side Diff: chrome/test/BUILD.gn

Issue 1149893020: [Media Router] Implement MediaRouterAction + MediaRouterUI tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//build/module_args/v8.gni") 9 import("//build/module_args/v8.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 1504 matching lines...) Expand 10 before | Expand all | Expand 10 after
1515 unit_gypi_values.chrome_unit_tests_session_service_sources, 1515 unit_gypi_values.chrome_unit_tests_session_service_sources,
1516 ".", 1516 ".",
1517 "//chrome") 1517 "//chrome")
1518 } 1518 }
1519 if (enable_media_router) { 1519 if (enable_media_router) {
1520 sources += 1520 sources +=
1521 rebase_path(unit_gypi_values.chrome_unit_tests_media_router_sources, 1521 rebase_path(unit_gypi_values.chrome_unit_tests_media_router_sources,
1522 ".", 1522 ".",
1523 "//chrome") 1523 "//chrome")
1524 deps += [ "//chrome/browser/media/router:test_support" ] 1524 deps += [ "//chrome/browser/media/router:test_support" ]
1525 if (!toolkit_views) {
1526 sources -= [ "../browser/ui/views/media_router/media_router_ui_browserte st.cc" ]
1527 }
1525 } 1528 }
1526 if (enable_webrtc) { 1529 if (enable_webrtc) {
1527 sources += rebase_path(unit_gypi_values.chrome_unit_tests_webrtc_sources, 1530 sources += rebase_path(unit_gypi_values.chrome_unit_tests_webrtc_sources,
1528 ".", 1531 ".",
1529 "//chrome") 1532 "//chrome")
1530 } 1533 }
1531 if (is_chromeos) { 1534 if (is_chromeos) {
1532 sources += 1535 sources +=
1533 rebase_path(unit_gypi_values.chrome_unit_tests_chromeos_sources, 1536 rebase_path(unit_gypi_values.chrome_unit_tests_chromeos_sources,
1534 ".", 1537 ".",
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
1822 "//third_party/mojo/src/mojo/edk/system", 1825 "//third_party/mojo/src/mojo/edk/system",
1823 ] 1826 ]
1824 1827
1825 if (!is_android && use_ash) { 1828 if (!is_android && use_ash) {
1826 sources += 1829 sources +=
1827 rebase_path(unit_gypi_values.chrome_test_support_unit_ash_sources, 1830 rebase_path(unit_gypi_values.chrome_test_support_unit_ash_sources,
1828 ".", 1831 ".",
1829 "//chrome") 1832 "//chrome")
1830 } 1833 }
1831 } 1834 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698