| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "resource_usage_reporter_type_converters.cc", | 131 "resource_usage_reporter_type_converters.cc", |
| 132 "resource_usage_reporter_type_converters.h", | 132 "resource_usage_reporter_type_converters.h", |
| 133 ] | 133 ] |
| 134 } else { | 134 } else { |
| 135 # Non-iOS. | 135 # Non-iOS. |
| 136 public_deps += [ | 136 public_deps += [ |
| 137 ":mojo_bindings", | 137 ":mojo_bindings", |
| 138 "//chrome/common/net", | 138 "//chrome/common/net", |
| 139 "//components/autofill/content/common", | 139 "//components/autofill/content/common", |
| 140 "//components/autofill/core/common", | 140 "//components/autofill/core/common", |
| 141 "//components/password_manager/content/common", | 141 "//components/password_manager/content/public/interfaces", |
| 142 "//components/password_manager/core/common", | 142 "//components/password_manager/core/common", |
| 143 "//components/signin/core/common", | 143 "//components/signin/core/common", |
| 144 "//components/translate/content/common", | 144 "//components/translate/content/common", |
| 145 "//components/visitedlink/common", | 145 "//components/visitedlink/common", |
| 146 "//ipc", | 146 "//ipc", |
| 147 "//media", | 147 "//media", |
| 148 "//mojo/public/cpp/bindings", | 148 "//mojo/public/cpp/bindings", |
| 149 "//third_party/re2", | 149 "//third_party/re2", |
| 150 "//third_party/widevine/cdm:version_h", | 150 "//third_party/widevine/cdm:version_h", |
| 151 ] | 151 ] |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 ":constants", | 392 ":constants", |
| 393 "//base", | 393 "//base", |
| 394 ] | 394 ] |
| 395 } | 395 } |
| 396 | 396 |
| 397 mojom("mojo_bindings") { | 397 mojom("mojo_bindings") { |
| 398 sources = [ | 398 sources = [ |
| 399 "resource_usage_reporter.mojom", | 399 "resource_usage_reporter.mojom", |
| 400 ] | 400 ] |
| 401 } | 401 } |
| OLD | NEW |