| 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("//build/util/process_version.gni") | 5 import("//build/util/process_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 13 matching lines...) Expand all Loading... |
| 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_server.cc", | 28 "data_reduction_proxy_server.cc", |
| 29 "data_reduction_proxy_server.h", | 29 "data_reduction_proxy_server.h", |
| 30 "data_reduction_proxy_switches.cc", | 30 "data_reduction_proxy_switches.cc", |
| 31 "data_reduction_proxy_switches.h", | 31 "data_reduction_proxy_switches.h", |
| 32 "data_reduction_proxy_util.cc", | 32 "data_reduction_proxy_util.cc", |
| 33 "data_reduction_proxy_util.h", | 33 "data_reduction_proxy_util.h", |
| 34 "data_savings_recorder.h", | |
| 35 "lofi_decider.h", | 34 "lofi_decider.h", |
| 36 "lofi_ui_service.h", | 35 "lofi_ui_service.h", |
| 37 "resource_type_provider.h", | 36 "resource_type_provider.h", |
| 38 ] | 37 ] |
| 39 | 38 |
| 40 public_deps = [ | 39 public_deps = [ |
| 41 ":version_header", | 40 ":version_header", |
| 42 ] | 41 ] |
| 43 deps = [ | 42 deps = [ |
| 44 "//base", | 43 "//base", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 template_file = "version.h.in" | 113 template_file = "version.h.in" |
| 115 sources = [ | 114 sources = [ |
| 116 "//chrome/VERSION", | 115 "//chrome/VERSION", |
| 117 ] | 116 ] |
| 118 output = "$target_gen_dir/version.h" | 117 output = "$target_gen_dir/version.h" |
| 119 extra_args = [ | 118 extra_args = [ |
| 120 "-e", | 119 "-e", |
| 121 "VERSION_FULL=\"%s.%s.%s.%s\" % (MAJOR,MINOR,BUILD,PATCH)", | 120 "VERSION_FULL=\"%s.%s.%s.%s\" % (MAJOR,MINOR,BUILD,PATCH)", |
| 122 ] | 121 ] |
| 123 } | 122 } |
| OLD | NEW |