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

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

Issue 1131913003: Adds QueryResultManager support class for Media Router Dialog WebUI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix copyrights. Created 5 years, 7 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 deps = [ 205 deps = [
206 ":test_support", 206 ":test_support",
207 "//base", 207 "//base",
208 "//chrome:resources", 208 "//chrome:resources",
209 "//chrome:strings", 209 "//chrome:strings",
210 "//chrome/browser", 210 "//chrome/browser",
211 "//chrome/common", 211 "//chrome/common",
212 "//mojo/environment:chromium", 212 "//mojo/environment:chromium",
213 "//third_party/mojo/src/mojo/edk/system", 213 "//third_party/mojo/src/mojo/edk/system",
214 ] 214 ]
215 if (enable_media_router) {
216 sources += [
217 "../browser/media/router/mock_media_router.cc",
sky 2015/05/07 23:14:30 Why do these need to be here and not closer to whe
mark a. foltz 2015/05/08 00:13:16 I have another patch which will move these to chro
218 "../browser/media/router/mock_media_router.h",
219 ]
220 deps += [
221 "../browser/media/router:router_core",
222 "//testing/gmock",
223 ]
224 }
215 } 225 }
216 226
217 if (!is_android) { 227 if (!is_android) {
218 import("//chrome/chrome_tests.gni") 228 import("//chrome/chrome_tests.gni")
219 import("//third_party/protobuf/proto_library.gni") 229 import("//third_party/protobuf/proto_library.gni")
220 230
221 # GYP version: chrome/chrome_tests_unit.gypi:ipc_protobuf_message_test_proto 231 # GYP version: chrome/chrome_tests_unit.gypi:ipc_protobuf_message_test_proto
222 proto_library("test_proto") { 232 proto_library("test_proto") {
223 sources = [ 233 sources = [
224 "../common/safe_browsing/ipc_protobuf_message_test.proto", 234 "../common/safe_browsing/ipc_protobuf_message_test.proto",
(...skipping 1521 matching lines...) Expand 10 before | Expand all | Expand 10 after
1746 } 1756 }
1747 1757
1748 if (cld_version == 0 || cld_version == 2) { 1758 if (cld_version == 0 || cld_version == 2) {
1749 # Use whatever CLD2 data access mode that the 1759 # Use whatever CLD2 data access mode that the
1750 # application embedder is using. 1760 # application embedder is using.
1751 deps += [ "//third_party/cld_2:cld2_platform_impl" ] 1761 deps += [ "//third_party/cld_2:cld2_platform_impl" ]
1752 } 1762 }
1753 } 1763 }
1754 } 1764 }
1755 } 1765 }
OLDNEW
« chrome/browser/ui/webui/media_router/query_result_manager.cc ('K') | « chrome/chrome_tests_unit.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698