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 import("//components/data_reduction_proxy/core/common/version.gni") | 5 import("//components/data_reduction_proxy/core/common/version.gni") |
6 | 6 |
7 static_library("common") { | 7 static_library("common") { |
8 sources = [ | 8 sources = [ |
9 "data_reduction_proxy_event_store.cc", | 9 "data_reduction_proxy_event_store.cc", |
10 "data_reduction_proxy_event_store.h", | 10 "data_reduction_proxy_event_store.h", |
(...skipping 28 matching lines...) Expand all Loading... |
39 | 39 |
40 public_deps = [ | 40 public_deps = [ |
41 ":common", | 41 ":common", |
42 ] | 42 ] |
43 deps = [ | 43 deps = [ |
44 "//base", | 44 "//base", |
45 "//net", | 45 "//net", |
46 "//net:test_support", | 46 "//net:test_support", |
47 "//testing/gmock", | 47 "//testing/gmock", |
48 "//testing/gtest", | 48 "//testing/gtest", |
49 ] | 49 ] |
50 } | 50 } |
51 | 51 |
52 source_set("unit_tests") { | 52 source_set("unit_tests") { |
53 testonly = true | 53 testonly = true |
54 sources = [ | 54 sources = [ |
55 "data_reduction_proxy_event_store_unittest.cc", | 55 "data_reduction_proxy_event_store_unittest.cc", |
56 "data_reduction_proxy_headers_unittest.cc", | 56 "data_reduction_proxy_headers_unittest.cc", |
57 "data_reduction_proxy_params_unittest.cc", | 57 "data_reduction_proxy_params_unittest.cc", |
58 ] | 58 ] |
59 | 59 |
60 deps = [ | 60 deps = [ |
61 ":common", | 61 ":common", |
62 ":test_support", | 62 ":test_support", |
63 "//base", | 63 "//base", |
64 "//base/test:test_support", | 64 "//base/test:test_support", |
65 "//net:test_support", | 65 "//net:test_support", |
66 "//testing/gtest", | 66 "//testing/gtest", |
67 ] | 67 ] |
68 } | 68 } |
69 | 69 |
70 process_version("version_header") { | 70 process_version("version_header") { |
71 source = "version.h.in" | 71 source = "version.h.in" |
72 output = "$target_gen_dir/version.h" | 72 output = "$target_gen_dir/version.h" |
73 } | 73 } |
74 | |
OLD | NEW |