Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: components/data_reduction_proxy/core/common/BUILD.gn

Issue 2249903004: Adding a DataSavingsRecorder interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bengr comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//chrome/version.gni") 5 import("//chrome/version.gni")
6 6
7 # Variables: 7 # Variables:
8 # deps: Extra dependencies. 8 # deps: Extra dependencies.
9 template("common_tmpl") { 9 template("common_tmpl") {
10 static_library(target_name) { 10 static_library(target_name) {
(...skipping 11 matching lines...) Expand all
22 "data_reduction_proxy_page_load_timing.cc", 22 "data_reduction_proxy_page_load_timing.cc",
23 "data_reduction_proxy_page_load_timing.h", 23 "data_reduction_proxy_page_load_timing.h",
24 "data_reduction_proxy_params.cc", 24 "data_reduction_proxy_params.cc",
25 "data_reduction_proxy_params.h", 25 "data_reduction_proxy_params.h",
26 "data_reduction_proxy_pref_names.cc", 26 "data_reduction_proxy_pref_names.cc",
27 "data_reduction_proxy_pref_names.h", 27 "data_reduction_proxy_pref_names.h",
28 "data_reduction_proxy_switches.cc", 28 "data_reduction_proxy_switches.cc",
29 "data_reduction_proxy_switches.h", 29 "data_reduction_proxy_switches.h",
30 "data_reduction_proxy_util.cc", 30 "data_reduction_proxy_util.cc",
31 "data_reduction_proxy_util.h", 31 "data_reduction_proxy_util.h",
32 "data_savings_recorder.h",
32 "lofi_decider.h", 33 "lofi_decider.h",
33 "lofi_ui_service.h", 34 "lofi_ui_service.h",
34 ] 35 ]
35 36
36 public_deps = [ 37 public_deps = [
37 ":version_header", 38 ":version_header",
38 ] 39 ]
39 deps = [ 40 deps = [
40 "//base", 41 "//base",
41 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 42 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 } 108 }
108 109
109 process_version("version_header") { 110 process_version("version_header") {
110 template_file = "version.h.in" 111 template_file = "version.h.in"
111 output = "$target_gen_dir/version.h" 112 output = "$target_gen_dir/version.h"
112 extra_args = [ 113 extra_args = [
113 "-e", 114 "-e",
114 "VERSION_FULL=\"%s.%s.%s.%s\" % (MAJOR,MINOR,BUILD,PATCH)", 115 "VERSION_FULL=\"%s.%s.%s.%s\" % (MAJOR,MINOR,BUILD,PATCH)",
115 ] 116 ]
116 } 117 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698