| 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("//third_party/mojo/src/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") ], |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 # Non-iOS. | 100 # Non-iOS. |
| 101 deps += [ | 101 deps += [ |
| 102 ":mojo_bindings", | 102 ":mojo_bindings", |
| 103 "//components/visitedlink/common", | 103 "//components/visitedlink/common", |
| 104 "//components/autofill/content/common", | 104 "//components/autofill/content/common", |
| 105 "//components/autofill/core/common", | 105 "//components/autofill/core/common", |
| 106 "//components/password_manager/content/common", | 106 "//components/password_manager/content/common", |
| 107 "//components/password_manager/core/common", | 107 "//components/password_manager/core/common", |
| 108 "//components/signin/core/common", | 108 "//components/signin/core/common", |
| 109 "//components/translate/content/common", | 109 "//components/translate/content/common", |
| 110 "//media", |
| 110 "//ipc", | 111 "//ipc", |
| 111 "//third_party/re2", | 112 "//third_party/re2", |
| 112 "//third_party/widevine/cdm:version_h", | 113 "//third_party/widevine/cdm:version_h", |
| 113 ] | 114 ] |
| 114 public_deps += [ | 115 public_deps += [ |
| 115 "//chrome/common/net", | 116 "//chrome/common/net", |
| 116 "//third_party/mojo/src/mojo/public/cpp/bindings", | 117 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 117 ] | 118 ] |
| 118 } | 119 } |
| 119 | 120 |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 ":constants", | 350 ":constants", |
| 350 "//base", | 351 "//base", |
| 351 ] | 352 ] |
| 352 } | 353 } |
| 353 | 354 |
| 354 mojom("mojo_bindings") { | 355 mojom("mojo_bindings") { |
| 355 sources = [ | 356 sources = [ |
| 356 "resource_usage_reporter.mojom", | 357 "resource_usage_reporter.mojom", |
| 357 ] | 358 ] |
| 358 } | 359 } |
| OLD | NEW |