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

Side by Side Diff: components/data_reduction_proxy/content/browser/BUILD.gn

Issue 2063683002: Migrate components/data_reduction_proxy to Mojo interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unit tests Created 4 years, 5 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 source_set("browser") { 5 source_set("browser") {
6 sources = [ 6 sources = [
7 "content_lofi_decider.cc", 7 "content_lofi_decider.cc",
8 "content_lofi_decider.h", 8 "content_lofi_decider.h",
9 "content_lofi_ui_service.cc", 9 "content_lofi_ui_service.cc",
10 "content_lofi_ui_service.h", 10 "content_lofi_ui_service.h",
11 "data_reduction_proxy_message_filter.cc", 11 "data_reduction_proxy_host_impl.cc",
12 "data_reduction_proxy_message_filter.h", 12 "data_reduction_proxy_host_impl.h",
13 ] 13 ]
14 14
15 deps = [ 15 deps = [
16 "//base", 16 "//base",
17 "//components/data_reduction_proxy/content/common", 17 "//components/data_reduction_proxy/content/common",
18 "//components/data_reduction_proxy/core/browser", 18 "//components/data_reduction_proxy/core/browser",
19 "//components/data_reduction_proxy/core/common", 19 "//components/data_reduction_proxy/core/common",
20 "//content/public/browser", 20 "//content/public/browser",
21 "//content/public/common", 21 "//content/public/common",
22 "//ipc",
23 "//net", 22 "//net",
24 ] 23 ]
25 } 24 }
26 25
27 source_set("unit_tests") { 26 source_set("unit_tests") {
28 testonly = true 27 testonly = true
29 sources = [ 28 sources = [
30 "content_lofi_decider_unittest.cc", 29 "content_lofi_decider_unittest.cc",
31 "content_lofi_ui_service_unittest.cc", 30 "content_lofi_ui_service_unittest.cc",
32 "data_reduction_proxy_message_filter_unittest.cc", 31 "data_reduction_proxy_host_impl_unittest.cc",
33 ] 32 ]
34 33
35 deps = [ 34 deps = [
36 ":browser", 35 ":browser",
37 "//base", 36 "//base",
38 "//components/data_reduction_proxy/core/browser:test_support", 37 "//components/data_reduction_proxy/core/browser:test_support",
39 "//components/data_reduction_proxy/core/common:test_support", 38 "//components/data_reduction_proxy/core/common:test_support",
40 "//content/public/browser", 39 "//content/public/browser",
41 "//content/public/common", 40 "//content/public/common",
42 "//content/test:test_support", 41 "//content/test:test_support",
42 "//mojo/public/cpp/bindings",
tbansal1 2016/07/13 17:35:18 Should not this be near line 22 above?
leonhsl(Using Gerrit) 2016/07/14 14:54:53 Ah this should be unnecessary. Removed and Thanks!
43 "//net:test_support", 43 "//net:test_support",
44 "//testing/gmock", 44 "//testing/gmock",
45 "//testing/gtest", 45 "//testing/gtest",
46 ] 46 ]
47 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698