| 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/common/common.gni") | 7 import("//content/common/common.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 | 9 |
| 10 if (is_chromeos && use_x11 && cpu_arch != "arm") { | 10 if (is_chromeos && use_x11 && cpu_arch != "arm") { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 deps = [ | 52 deps = [ |
| 53 "//base", | 53 "//base", |
| 54 "//build/util:webkit_version", | 54 "//build/util:webkit_version", |
| 55 "//components/tracing", | 55 "//components/tracing", |
| 56 "//gpu/command_buffer/client:gles2_interface", | 56 "//gpu/command_buffer/client:gles2_interface", |
| 57 "//net", | 57 "//net", |
| 58 "//skia", | 58 "//skia", |
| 59 "//third_party/icu", | 59 "//third_party/icu", |
| 60 "//ui/accessibility", | 60 "//ui/accessibility", |
| 61 "//ui/base", | 61 "//ui/base", |
| 62 "//ui/events/ipc", |
| 62 "//ui/gfx", | 63 "//ui/gfx", |
| 63 "//ui/gfx/geometry", | 64 "//ui/gfx/geometry", |
| 64 "//ui/gfx/ipc", | 65 "//ui/gfx/ipc", |
| 65 "//ui/shell_dialogs", | 66 "//ui/shell_dialogs", |
| 66 "//url", | 67 "//url", |
| 67 "//third_party/libjingle", | 68 "//third_party/libjingle", |
| 68 ] | 69 ] |
| 69 | 70 |
| 70 if (!is_ios) { | 71 if (!is_ios) { |
| 71 deps += [ | 72 deps += [ |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 | 318 |
| 318 mojom("mojo_bindings") { | 319 mojom("mojo_bindings") { |
| 319 sources = [ | 320 sources = [ |
| 320 "render_frame_setup.mojom", | 321 "render_frame_setup.mojom", |
| 321 ] | 322 ] |
| 322 | 323 |
| 323 deps = [ | 324 deps = [ |
| 324 "//mojo/public/interfaces/application:application", | 325 "//mojo/public/interfaces/application:application", |
| 325 ] | 326 ] |
| 326 } | 327 } |
| OLD | NEW |