| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
| 7 import("//chrome/version.gni") | 7 import("//chrome/version.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 template_file = "chrome_version.h.in" | 292 template_file = "chrome_version.h.in" |
| 293 | 293 |
| 294 output = "$target_gen_dir/chrome_version.h" | 294 output = "$target_gen_dir/chrome_version.h" |
| 295 } | 295 } |
| 296 | 296 |
| 297 # GYP version: chrome/common_constants.gyp:common_constants | 297 # GYP version: chrome/common_constants.gyp:common_constants |
| 298 static_library("constants") { | 298 static_library("constants") { |
| 299 sources = [ | 299 sources = [ |
| 300 "chrome_constants.cc", | 300 "chrome_constants.cc", |
| 301 "chrome_constants.h", | 301 "chrome_constants.h", |
| 302 "chrome_constants_util_win.cc", |
| 303 "chrome_constants_util_win.h", |
| 302 "chrome_features.cc", | 304 "chrome_features.cc", |
| 303 "chrome_features.h", | 305 "chrome_features.h", |
| 304 "chrome_icon_resources_win.cc", | 306 "chrome_icon_resources_win.cc", |
| 305 "chrome_icon_resources_win.h", | 307 "chrome_icon_resources_win.h", |
| 306 "chrome_paths.cc", | 308 "chrome_paths.cc", |
| 307 "chrome_paths.h", | 309 "chrome_paths.h", |
| 308 "chrome_paths_android.cc", | 310 "chrome_paths_android.cc", |
| 309 "chrome_paths_internal.h", | 311 "chrome_paths_internal.h", |
| 310 "chrome_paths_linux.cc", | 312 "chrome_paths_linux.cc", |
| 311 "chrome_paths_mac.mm", | 313 "chrome_paths_mac.mm", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 ":constants", | 395 ":constants", |
| 394 "//base", | 396 "//base", |
| 395 ] | 397 ] |
| 396 } | 398 } |
| 397 | 399 |
| 398 mojom("mojo_bindings") { | 400 mojom("mojo_bindings") { |
| 399 sources = [ | 401 sources = [ |
| 400 "resource_usage_reporter.mojom", | 402 "resource_usage_reporter.mojom", |
| 401 ] | 403 ] |
| 402 } | 404 } |
| OLD | NEW |