Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: content/common/BUILD.gn

Issue 666813002: GN: Fix Android component build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-clank
Patch Set: Actually undo gyp change Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698