OLD | NEW |
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 "data_reduction_proxy_message_filter.cc", | 9 "data_reduction_proxy_message_filter.cc", |
10 "data_reduction_proxy_message_filter.h", | 10 "data_reduction_proxy_message_filter.h", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 51 |
52 deps = [ | 52 deps = [ |
53 ":browser", | 53 ":browser", |
54 "//base", | 54 "//base", |
55 "//components/data_reduction_proxy/core/browser:test_support", | 55 "//components/data_reduction_proxy/core/browser:test_support", |
56 "//components/data_reduction_proxy/core/common:test_support", | 56 "//components/data_reduction_proxy/core/common:test_support", |
57 "//content/public/browser", | 57 "//content/public/browser", |
58 "//content/public/common", | 58 "//content/public/common", |
59 "//content/test:test_support", | 59 "//content/test:test_support", |
60 "//net:test_support", | 60 "//net:test_support", |
| 61 "//testing/gmock", |
61 "//testing/gtest", | 62 "//testing/gtest", |
62 "//testing/gmock", | |
63 ] | 63 ] |
64 | 64 |
65 if (is_android) { | 65 if (is_android) { |
66 sources += [ | 66 sources += [ |
67 "data_reduction_proxy_debug_blocking_page_unittest.cc", | 67 "data_reduction_proxy_debug_blocking_page_unittest.cc", |
68 "data_reduction_proxy_debug_resource_throttle_unittest.cc", | 68 "data_reduction_proxy_debug_resource_throttle_unittest.cc", |
69 "data_reduction_proxy_debug_ui_manager_unittest.cc", | 69 "data_reduction_proxy_debug_ui_manager_unittest.cc", |
70 ] | 70 ] |
71 | 71 |
72 deps += [ | 72 deps += [ |
73 "//mojo/public/cpp/bindings", | 73 "//mojo/public/cpp/bindings", |
74 "//skia", | 74 "//skia", |
75 ] | 75 ] |
76 } | 76 } |
77 } | 77 } |
OLD | NEW |