| 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 20 matching lines...) Expand all Loading... |
| 31 "data_reduction_proxy_params_test_utils.h", | 31 "data_reduction_proxy_params_test_utils.h", |
| 32 ] | 32 ] |
| 33 | 33 |
| 34 deps = [ | 34 deps = [ |
| 35 ":common", | 35 ":common", |
| 36 "//base", | 36 "//base", |
| 37 "//net", | 37 "//net", |
| 38 "//net:test_support", | 38 "//net:test_support", |
| 39 "//testing/gmock", | 39 "//testing/gmock", |
| 40 "//testing/gtest", | 40 "//testing/gtest", |
| 41 ] | 41 ] |
| 42 } | 42 } |
| 43 | 43 |
| 44 source_set("unit_tests") { | 44 source_set("unit_tests") { |
| 45 testonly = true | 45 testonly = true |
| 46 sources = [ | 46 sources = [ |
| 47 "data_reduction_proxy_event_store_unittest.cc", | 47 "data_reduction_proxy_event_store_unittest.cc", |
| 48 "data_reduction_proxy_headers_unittest.cc", | 48 "data_reduction_proxy_headers_unittest.cc", |
| 49 "data_reduction_proxy_params_unittest.cc", | 49 "data_reduction_proxy_params_unittest.cc", |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 deps = [ | 52 deps = [ |
| 53 ":common", | 53 ":common", |
| 54 "//testing/gtest", | 54 "//testing/gtest", |
| 55 ] | 55 ] |
| 56 } | 56 } |
| 57 | 57 |
| 58 process_version("version_header") { | 58 process_version("version_header") { |
| 59 source = "version.h.in" | 59 source = "version.h.in" |
| 60 output = "$target_gen_dir/version.h" | 60 output = "$target_gen_dir/version.h" |
| 61 } | 61 } |
| 62 | |
| OLD | NEW |