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

Side by Side Diff: third_party/WebKit/Source/modules/BUILD.gn

Issue 1808203005: [OnionSoup] Moving VR service from content to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased to ToT again! Created 4 years, 7 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("//third_party/WebKit/Source/bindings/bindings.gni") 5 import("//third_party/WebKit/Source/bindings/bindings.gni")
6 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 6 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
7 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") 7 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni")
8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
9 import("//third_party/WebKit/Source/modules/modules.gni") 9 import("//third_party/WebKit/Source/modules/modules.gni")
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ] 45 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ]
46 46
47 deps = [ 47 deps = [
48 ":make_modules_generated", 48 ":make_modules_generated",
49 "//components/permissions", 49 "//components/permissions",
50 "//device/battery:mojo_bindings", 50 "//device/battery:mojo_bindings",
51 "//device/usb/public/interfaces:interfaces_blink", 51 "//device/usb/public/interfaces:interfaces_blink",
52 "//mojo/public/c/system:for_component", 52 "//mojo/public/c/system:for_component",
53 "//third_party/WebKit/Source/core", 53 "//third_party/WebKit/Source/core",
54 "//third_party/WebKit/public:mojo_bindings",
54 "//third_party/WebKit/public:mojo_bindings_blink", 55 "//third_party/WebKit/public:mojo_bindings_blink",
55 "//third_party/icu", 56 "//third_party/icu",
56 "//third_party/sqlite", 57 "//third_party/sqlite",
57 "//third_party/zlib", 58 "//third_party/zlib",
58 ] 59 ]
59 60
60 if (is_win) { 61 if (is_win) {
61 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64 bits. 62 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64 bits.
62 # TODO(GYP) 63 # TODO(GYP)
63 # Shard this taret into parts to work around linker limitations. 64 # Shard this taret into parts to work around linker limitations.
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 } 112 }
112 113
113 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate d 114 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate d
114 group("make_modules_generated") { 115 group("make_modules_generated") {
115 public_deps = [ 116 public_deps = [
116 ":module_names", 117 ":module_names",
117 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", 118 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated",
118 "//third_party/WebKit/Source/core:core_event_interfaces", 119 "//third_party/WebKit/Source/core:core_event_interfaces",
119 ] 120 ]
120 } 121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698