| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "//ui/base", | 119 "//ui/base", |
| 120 "//ui/gfx/ipc", | 120 "//ui/gfx/ipc", |
| 121 "//ui/gfx/ipc/geometry", | 121 "//ui/gfx/ipc/geometry", |
| 122 "//ui/gfx/ipc/skia", | 122 "//ui/gfx/ipc/skia", |
| 123 "//ui/gl", | 123 "//ui/gl", |
| 124 "//ui/message_center", | 124 "//ui/message_center", |
| 125 "//ui/resources:resources", | 125 "//ui/resources:resources", |
| 126 "//url", | 126 "//url", |
| 127 ] | 127 ] |
| 128 | 128 |
| 129 if (enable_spellcheck) { |
| 130 public_deps += [ "//components/spellcheck/common" ] |
| 131 } |
| 132 |
| 129 if (enable_plugins) { | 133 if (enable_plugins) { |
| 130 public_deps += [ "//ppapi/shared_impl" ] | 134 public_deps += [ "//ppapi/shared_impl" ] |
| 131 } | 135 } |
| 132 | 136 |
| 133 if (is_ios) { | 137 if (is_ios) { |
| 134 sources += [ | 138 sources += [ |
| 135 # Use this Mac file that was filtered out. | 139 # Use this Mac file that was filtered out. |
| 136 "channel_info_mac.mm", | 140 "channel_info_mac.mm", |
| 137 ] | 141 ] |
| 138 sources -= [ | 142 sources -= [ |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 sources = [ | 432 sources = [ |
| 429 "image_decoder.mojom", | 433 "image_decoder.mojom", |
| 430 "resource_usage_reporter.mojom", | 434 "resource_usage_reporter.mojom", |
| 431 "shell_handler_win.mojom", | 435 "shell_handler_win.mojom", |
| 432 ] | 436 ] |
| 433 | 437 |
| 434 public_deps = [ | 438 public_deps = [ |
| 435 "//skia/public/interfaces", | 439 "//skia/public/interfaces", |
| 436 ] | 440 ] |
| 437 } | 441 } |
| OLD | NEW |