| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "//components/variations", | 88 "//components/variations", |
| 89 "//components/version_info", | 89 "//components/version_info", |
| 90 "//content/public/common", | 90 "//content/public/common", |
| 91 "//crypto", | 91 "//crypto", |
| 92 "//extensions/common:common_constants", | 92 "//extensions/common:common_constants", |
| 93 "//gin", | 93 "//gin", |
| 94 "//google_apis", | 94 "//google_apis", |
| 95 "//gpu/command_buffer/service", | 95 "//gpu/command_buffer/service", |
| 96 "//gpu/config", | 96 "//gpu/config", |
| 97 "//net", | 97 "//net", |
| 98 "//ppapi/shared_impl", | |
| 99 "//skia", | 98 "//skia", |
| 100 "//third_party/icu", | 99 "//third_party/icu", |
| 101 "//third_party/zlib:zip", | 100 "//third_party/zlib:zip", |
| 102 "//ui/accessibility", | 101 "//ui/accessibility", |
| 103 "//ui/base", | 102 "//ui/base", |
| 104 "//ui/gfx/ipc", | 103 "//ui/gfx/ipc", |
| 105 "//ui/gl", | 104 "//ui/gl", |
| 106 "//ui/message_center", | 105 "//ui/message_center", |
| 107 "//ui/resources:resources", | 106 "//ui/resources:resources", |
| 108 "//url", | 107 "//url", |
| 109 ] | 108 ] |
| 110 | 109 |
| 110 if (enable_plugins) { |
| 111 public_deps += [ "//ppapi/shared_impl" ] |
| 112 } |
| 113 |
| 111 if (is_ios) { | 114 if (is_ios) { |
| 112 sources += [ | 115 sources += [ |
| 113 # Use this Mac file that was filtered out. | 116 # Use this Mac file that was filtered out. |
| 114 "channel_info_mac.mm", | 117 "channel_info_mac.mm", |
| 115 ] | 118 ] |
| 116 sources -= [ | 119 sources -= [ |
| 117 "resource_usage_reporter_type_converters.cc", | 120 "resource_usage_reporter_type_converters.cc", |
| 118 "resource_usage_reporter_type_converters.h", | 121 "resource_usage_reporter_type_converters.h", |
| 119 ] | 122 ] |
| 120 } else { | 123 } else { |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 ":constants", | 398 ":constants", |
| 396 "//base", | 399 "//base", |
| 397 ] | 400 ] |
| 398 } | 401 } |
| 399 | 402 |
| 400 mojom("mojo_bindings") { | 403 mojom("mojo_bindings") { |
| 401 sources = [ | 404 sources = [ |
| 402 "resource_usage_reporter.mojom", | 405 "resource_usage_reporter.mojom", |
| 403 ] | 406 ] |
| 404 } | 407 } |
| OLD | NEW |