| 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("//chrome/version.gni") | 5 import("//chrome/version.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "//components/variations", | 79 "//components/variations", |
| 80 "//components/version_info", | 80 "//components/version_info", |
| 81 "//content/public/common", | 81 "//content/public/common", |
| 82 "//crypto", | 82 "//crypto", |
| 83 "//extensions/common:common_constants", | 83 "//extensions/common:common_constants", |
| 84 "//gin", | 84 "//gin", |
| 85 "//google_apis", | 85 "//google_apis", |
| 86 "//gpu/command_buffer/service", | 86 "//gpu/command_buffer/service", |
| 87 "//gpu/config", | 87 "//gpu/config", |
| 88 "//net", | 88 "//net", |
| 89 "//ppapi/shared_impl", | |
| 90 "//skia", | 89 "//skia", |
| 91 "//third_party/icu", | 90 "//third_party/icu", |
| 92 "//third_party/zlib:zip", | 91 "//third_party/zlib:zip", |
| 93 "//ui/accessibility", | 92 "//ui/accessibility", |
| 94 "//ui/base", | 93 "//ui/base", |
| 95 "//ui/gfx/ipc", | 94 "//ui/gfx/ipc", |
| 96 "//ui/gl", | 95 "//ui/gl", |
| 97 "//ui/message_center", | 96 "//ui/message_center", |
| 98 "//ui/resources:resources", | 97 "//ui/resources:resources", |
| 99 "//url", | 98 "//url", |
| 100 ] | 99 ] |
| 101 | 100 |
| 101 if (enable_plugins) { |
| 102 public_deps += [ "//ppapi/shared_impl" ] |
| 103 } |
| 104 |
| 102 if (is_ios) { | 105 if (is_ios) { |
| 103 sources += [ | 106 sources += [ |
| 104 # Use this Mac file that was filtered out. | 107 # Use this Mac file that was filtered out. |
| 105 "channel_info_mac.mm", | 108 "channel_info_mac.mm", |
| 106 ] | 109 ] |
| 107 sources -= [ | 110 sources -= [ |
| 108 "resource_usage_reporter_type_converters.cc", | 111 "resource_usage_reporter_type_converters.cc", |
| 109 "resource_usage_reporter_type_converters.h", | 112 "resource_usage_reporter_type_converters.h", |
| 110 ] | 113 ] |
| 111 } else { | 114 } else { |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 ":constants", | 388 ":constants", |
| 386 "//base", | 389 "//base", |
| 387 ] | 390 ] |
| 388 } | 391 } |
| 389 | 392 |
| 390 mojom("mojo_bindings") { | 393 mojom("mojo_bindings") { |
| 391 sources = [ | 394 sources = [ |
| 392 "resource_usage_reporter.mojom", | 395 "resource_usage_reporter.mojom", |
| 393 ] | 396 ] |
| 394 } | 397 } |
| OLD | NEW |