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

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

Issue 2726223004: Introduce networking.cast API (Closed)
Patch Set: . Created 3 years, 9 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/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 2577 matching lines...) Expand 10 before | Expand all | Expand 10 after
2588 ] 2588 ]
2589 } 2589 }
2590 if (is_mac || is_win || (is_linux && !is_chromeos)) { 2590 if (is_mac || is_win || (is_linux && !is_chromeos)) {
2591 sources += [ 2591 sources += [
2592 # Tests for non mobile and non CrOS (includes Linux, Win, Mac). 2592 # Tests for non mobile and non CrOS (includes Linux, Win, Mac).
2593 "../browser/metrics/desktop_session_duration/audible_contents_tracker_br owsertest.cc", 2593 "../browser/metrics/desktop_session_duration/audible_contents_tracker_br owsertest.cc",
2594 "../browser/metrics/desktop_session_duration/chrome_visibility_observer_ browsertest.cc", 2594 "../browser/metrics/desktop_session_duration/chrome_visibility_observer_ browsertest.cc",
2595 "../browser/profiles/profile_statistics_browsertest.cc", 2595 "../browser/profiles/profile_statistics_browsertest.cc",
2596 ] 2596 ]
2597 } 2597 }
2598 if (is_mac || is_win || is_chromeos) {
2599 sources += [ "../browser/extensions/api/networking_cast/networking_cast_ap itest.cc" ]
2600 }
2598 if (enable_app_list) { 2601 if (enable_app_list) {
2599 sources += [ 2602 sources += [
2600 "../browser/apps/drive/drive_app_converter_browsertest.cc", 2603 "../browser/apps/drive/drive_app_converter_browsertest.cc",
2601 "../browser/apps/drive/drive_app_provider_browsertest.cc", 2604 "../browser/apps/drive/drive_app_provider_browsertest.cc",
2602 "../browser/ui/app_list/app_list_controller_browsertest.cc", 2605 "../browser/ui/app_list/app_list_controller_browsertest.cc",
2603 "../browser/ui/app_list/app_list_service_impl_browsertest.cc", 2606 "../browser/ui/app_list/app_list_service_impl_browsertest.cc",
2604 "../browser/ui/app_list/search/webstore/webstore_provider_browsertest.cc ", 2607 "../browser/ui/app_list/search/webstore/webstore_provider_browsertest.cc ",
2605 "../browser/ui/app_list/speech_recognizer_browsertest.cc", 2608 "../browser/ui/app_list/speech_recognizer_browsertest.cc",
2606 ] 2609 ]
2607 } 2610 }
(...skipping 2570 matching lines...) Expand 10 before | Expand all | Expand 10 after
5178 } 5181 }
5179 5182
5180 if (is_win) { 5183 if (is_win) {
5181 loadable_module("conflicts_dll") { 5184 loadable_module("conflicts_dll") {
5182 testonly = true 5185 testonly = true
5183 sources = [ 5186 sources = [
5184 "conflicts/conflicts_dll.cc", 5187 "conflicts/conflicts_dll.cc",
5185 ] 5188 ]
5186 } 5189 }
5187 } 5190 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698