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

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 2584 matching lines...) Expand 10 before | Expand all | Expand 10 after
2595 ] 2595 ]
2596 } 2596 }
2597 if (is_mac || is_win || (is_linux && !is_chromeos)) { 2597 if (is_mac || is_win || (is_linux && !is_chromeos)) {
2598 sources += [ 2598 sources += [
2599 # Tests for non mobile and non CrOS (includes Linux, Win, Mac). 2599 # Tests for non mobile and non CrOS (includes Linux, Win, Mac).
2600 "../browser/metrics/desktop_session_duration/audible_contents_tracker_br owsertest.cc", 2600 "../browser/metrics/desktop_session_duration/audible_contents_tracker_br owsertest.cc",
2601 "../browser/metrics/desktop_session_duration/chrome_visibility_observer_ browsertest.cc", 2601 "../browser/metrics/desktop_session_duration/chrome_visibility_observer_ browsertest.cc",
2602 "../browser/profiles/profile_statistics_browsertest.cc", 2602 "../browser/profiles/profile_statistics_browsertest.cc",
2603 ] 2603 ]
2604 } 2604 }
2605 if (is_mac || is_win || is_chromeos) {
2606 sources += [ "../browser/extensions/api/networking_cast/networking_cast_ap itest.cc" ]
2607 }
2605 if (enable_app_list) { 2608 if (enable_app_list) {
2606 sources += [ 2609 sources += [
2607 "../browser/apps/drive/drive_app_converter_browsertest.cc", 2610 "../browser/apps/drive/drive_app_converter_browsertest.cc",
2608 "../browser/apps/drive/drive_app_provider_browsertest.cc", 2611 "../browser/apps/drive/drive_app_provider_browsertest.cc",
2609 "../browser/ui/app_list/app_list_controller_browsertest.cc", 2612 "../browser/ui/app_list/app_list_controller_browsertest.cc",
2610 "../browser/ui/app_list/app_list_service_impl_browsertest.cc", 2613 "../browser/ui/app_list/app_list_service_impl_browsertest.cc",
2611 "../browser/ui/app_list/search/webstore/webstore_provider_browsertest.cc ", 2614 "../browser/ui/app_list/search/webstore/webstore_provider_browsertest.cc ",
2612 "../browser/ui/app_list/speech_recognizer_browsertest.cc", 2615 "../browser/ui/app_list/speech_recognizer_browsertest.cc",
2613 ] 2616 ]
2614 } 2617 }
(...skipping 2568 matching lines...) Expand 10 before | Expand all | Expand 10 after
5183 } 5186 }
5184 5187
5185 if (is_win) { 5188 if (is_win) {
5186 loadable_module("conflicts_dll") { 5189 loadable_module("conflicts_dll") {
5187 testonly = true 5190 testonly = true
5188 sources = [ 5191 sources = [
5189 "conflicts/conflicts_dll.cc", 5192 "conflicts/conflicts_dll.cc",
5190 ] 5193 ]
5191 } 5194 }
5192 } 5195 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698