| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "//components/omnibox/common", | 71 "//components/omnibox/common", |
| 72 "//components/policy:policy_component_common", | 72 "//components/policy:policy_component_common", |
| 73 "//components/strings", | 73 "//components/strings", |
| 74 "//components/translate/core/common", | 74 "//components/translate/core/common", |
| 75 "//components/url_formatter", | 75 "//components/url_formatter", |
| 76 "//components/variations", | 76 "//components/variations", |
| 77 "//components/version_info", | 77 "//components/version_info", |
| 78 "//content/public/common", | 78 "//content/public/common", |
| 79 "//crypto", | 79 "//crypto", |
| 80 "//extensions/common:common_constants", | 80 "//extensions/common:common_constants", |
| 81 "//media", |
| 81 "//net", | 82 "//net", |
| 82 "//skia", | 83 "//skia", |
| 83 "//third_party/icu", | 84 "//third_party/icu", |
| 84 "//third_party/zlib:zip", | 85 "//third_party/zlib:zip", |
| 85 "//ui/resources:resources", | 86 "//ui/resources:resources", |
| 86 "//url", | 87 "//url", |
| 87 ] | 88 ] |
| 88 | 89 |
| 89 if (is_ios) { | 90 if (is_ios) { |
| 90 sources += [ | 91 sources += [ |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 ":constants", | 357 ":constants", |
| 357 "//base", | 358 "//base", |
| 358 ] | 359 ] |
| 359 } | 360 } |
| 360 | 361 |
| 361 mojom("mojo_bindings") { | 362 mojom("mojo_bindings") { |
| 362 sources = [ | 363 sources = [ |
| 363 "resource_usage_reporter.mojom", | 364 "resource_usage_reporter.mojom", |
| 364 ] | 365 ] |
| 365 } | 366 } |
| OLD | NEW |