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_bypass_type_list.h", |
9 "data_reduction_proxy_event_store.cc", | 10 "data_reduction_proxy_event_store.cc", |
10 "data_reduction_proxy_event_store.h", | 11 "data_reduction_proxy_event_store.h", |
11 "data_reduction_proxy_headers.cc", | 12 "data_reduction_proxy_headers.cc", |
12 "data_reduction_proxy_headers.h", | 13 "data_reduction_proxy_headers.h", |
13 "data_reduction_proxy_params.cc", | 14 "data_reduction_proxy_params.cc", |
14 "data_reduction_proxy_params.h", | 15 "data_reduction_proxy_params.h", |
15 "data_reduction_proxy_pref_names.cc", | 16 "data_reduction_proxy_pref_names.cc", |
16 "data_reduction_proxy_pref_names.h", | 17 "data_reduction_proxy_pref_names.h", |
17 "data_reduction_proxy_switches.cc", | 18 "data_reduction_proxy_switches.cc", |
18 "data_reduction_proxy_switches.h", | 19 "data_reduction_proxy_switches.h", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 "//base/test:test_support", | 65 "//base/test:test_support", |
65 "//net:test_support", | 66 "//net:test_support", |
66 "//testing/gtest", | 67 "//testing/gtest", |
67 ] | 68 ] |
68 } | 69 } |
69 | 70 |
70 process_version("version_header") { | 71 process_version("version_header") { |
71 source = "version.h.in" | 72 source = "version.h.in" |
72 output = "$target_gen_dir/version.h" | 73 output = "$target_gen_dir/version.h" |
73 } | 74 } |
OLD | NEW |