| 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//chrome/version.gni") | 7 import("//chrome/version.gni") |
| 8 | 8 |
| 9 gypi_values = exec_script("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 10 [ rebase_path("../chrome_common.gypi") ], | 10 [ rebase_path("../chrome_common.gypi") ], |
| 11 "scope", | 11 "scope", |
| 12 [ "../chrome_common.gypi" ]) | 12 [ "../chrome_common.gypi" ]) |
| 13 | 13 |
| 14 # GYP version: chrome/chrome_resources.gyp:chrome_resources | 14 # GYP version: chrome/chrome_resources.gyp:chrome_resources |
| 15 # (generate_common_resources action) | 15 # (generate_common_resources action) |
| 16 grit("resources") { | 16 grit("resources") { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "//components/visitedlink/common", | 115 "//components/visitedlink/common", |
| 116 "//components/autofill/content/common", | 116 "//components/autofill/content/common", |
| 117 "//components/autofill/core/common", | 117 "//components/autofill/core/common", |
| 118 "//components/password_manager/content/common", | 118 "//components/password_manager/content/common", |
| 119 "//components/password_manager/core/common", | 119 "//components/password_manager/core/common", |
| 120 "//components/signin/core/common", | 120 "//components/signin/core/common", |
| 121 "//components/translate/content/common", | 121 "//components/translate/content/common", |
| 122 "//media", | 122 "//media", |
| 123 "//ipc", | 123 "//ipc", |
| 124 "//third_party/re2", | 124 "//third_party/re2", |
| 125 "//third_party/mojo/src/mojo/public/cpp/bindings", | 125 "//mojo/public/cpp/bindings", |
| 126 "//third_party/widevine/cdm:version_h", | 126 "//third_party/widevine/cdm:version_h", |
| 127 ] | 127 ] |
| 128 } | 128 } |
| 129 | 129 |
| 130 if (enable_extensions) { | 130 if (enable_extensions) { |
| 131 sources += rebase_path(gypi_values.chrome_common_extensions_sources, | 131 sources += rebase_path(gypi_values.chrome_common_extensions_sources, |
| 132 ".", | 132 ".", |
| 133 "//chrome") | 133 "//chrome") |
| 134 public_deps += [ | 134 public_deps += [ |
| 135 "//device/usb", | 135 "//device/usb", |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 ":constants", | 384 ":constants", |
| 385 "//base", | 385 "//base", |
| 386 ] | 386 ] |
| 387 } | 387 } |
| 388 | 388 |
| 389 mojom("mojo_bindings") { | 389 mojom("mojo_bindings") { |
| 390 sources = [ | 390 sources = [ |
| 391 "resource_usage_reporter.mojom", | 391 "resource_usage_reporter.mojom", |
| 392 ] | 392 ] |
| 393 } | 393 } |
| OLD | NEW |