| 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 |
| 11 gypi_values = exec_script("//build/gypi_to_gn.py", | 11 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 12 [ rebase_path("../chrome_common.gypi") ], | 12 [ rebase_path("../chrome_common.gypi") ], |
| 13 "scope", | 13 "scope", |
| 14 [ "../chrome_common.gypi" ]) | 14 [ "../chrome_common.gypi" ]) |
| 15 | 15 |
| 16 # GYP version: chrome/chrome_resources.gyp:chrome_resources | 16 # GYP version: chrome/chrome_resources.gyp:chrome_resources |
| 17 # (generate_common_resources action) | 17 # (generate_common_resources action) |
| 18 grit("resources") { | 18 grit("resources") { |
| 19 source = "common_resources.grd" | 19 source = "common_resources.grd" |
| 20 use_qualified_include = true |
| 20 output_dir = "$root_gen_dir/chrome" | 21 output_dir = "$root_gen_dir/chrome" |
| 21 output_name = "common_resources" | 22 output_name = "common_resources" |
| 22 outputs = [ | 23 outputs = [ |
| 23 "grit/common_resources.h", | 24 "grit/common_resources.h", |
| 24 "common_resources.pak", | 25 "common_resources.pak", |
| 25 ] | 26 ] |
| 26 } | 27 } |
| 27 | 28 |
| 28 buildflag_header("features") { | 29 buildflag_header("features") { |
| 29 header = "features.h" | 30 header = "features.h" |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 "resource_usage_reporter.mojom", | 405 "resource_usage_reporter.mojom", |
| 405 "shell_handler_win.mojom", | 406 "shell_handler_win.mojom", |
| 406 ] | 407 ] |
| 407 | 408 |
| 408 public_deps = [ | 409 public_deps = [ |
| 409 "//skia/public/interfaces", | 410 "//skia/public/interfaces", |
| 410 ] | 411 ] |
| 411 | 412 |
| 412 use_new_wrapper_types = false | 413 use_new_wrapper_types = false |
| 413 } | 414 } |
| OLD | NEW |