OLD | NEW |
---|---|
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 static_library("content") { | 5 static_library("content") { |
6 sources = [ | 6 sources = [ |
7 "data_reduction_proxy_blocking_page.cc", | |
8 "data_reduction_proxy_blocking_page.h", | |
7 "data_reduction_proxy_resource_throttle.cc", | 9 "data_reduction_proxy_resource_throttle.cc", |
8 "data_reduction_proxy_resource_throttle.h", | 10 "data_reduction_proxy_resource_throttle.h", |
9 "data_reduction_proxy_ui_manager.cc", | 11 "data_reduction_proxy_ui_manager.cc", |
10 "data_reduction_proxy_ui_manager.h", | 12 "data_reduction_proxy_ui_manager.h", |
11 "data_reduction_proxy_ui_service.cc", | 13 "data_reduction_proxy_ui_service.cc", |
12 "data_reduction_proxy_ui_service.h", | 14 "data_reduction_proxy_ui_service.h", |
13 ] | 15 ] |
14 | 16 |
15 deps = [ | 17 deps = [ |
16 "//base", | 18 "//base", |
19 "//components/resources", | |
20 "//components/strings", | |
17 "//content/public/browser", | 21 "//content/public/browser", |
18 "//skia", | 22 "//skia", |
23 "//ui/base", | |
19 ] | 24 ] |
20 } | 25 } |
21 | 26 |
22 source_set("unit_tests") { | 27 source_set("unit_tests") { |
23 testonly = true | 28 testonly = true |
24 sources = [ | 29 sources = [ |
30 "data_reduction_proxy_blocking_page_unittest.cc", | |
blundell
2015/01/14 20:52:12
should this be added only on android, based on the
megjablon
2015/01/15 00:51:59
Done.
| |
25 "data_reduction_proxy_resource_throttle_unittest.cc", | 31 "data_reduction_proxy_resource_throttle_unittest.cc", |
26 "data_reduction_proxy_ui_manager_unittest.cc", | 32 "data_reduction_proxy_ui_manager_unittest.cc", |
27 ] | 33 ] |
28 | 34 |
29 deps = [ | 35 deps = [ |
30 ":content", | 36 ":content", |
31 "//testing/gtest", | 37 "//testing/gtest", |
32 ] | 38 ] |
33 } | 39 } |
OLD | NEW |