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

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

Issue 2004643002: Implement BroadcastChannel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address dcheng's comments Created 4 years, 5 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 "//build/config/compiler:no_size_t_to_int_warning", 48 "//build/config/compiler:no_size_t_to_int_warning",
49 "//third_party/WebKit/Source:config", 49 "//third_party/WebKit/Source:config",
50 "//third_party/WebKit/Source:non_test_config", 50 "//third_party/WebKit/Source:non_test_config",
51 "//third_party/WebKit/Source:inside_blink", 51 "//third_party/WebKit/Source:inside_blink",
52 ] 52 ]
53 53
54 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ] 54 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ]
55 55
56 deps = [ 56 deps = [
57 ":make_modules_generated", 57 ":make_modules_generated",
58 "//components/webmessaging/public/interfaces:interfaces_blink",
58 "//device/battery:mojo_bindings_blink", 59 "//device/battery:mojo_bindings_blink",
59 "//device/nfc:mojo_bindings_blink", 60 "//device/nfc:mojo_bindings_blink",
60 "//device/usb/public/interfaces:interfaces_blink", 61 "//device/usb/public/interfaces:interfaces_blink",
61 "//device/vibration:mojo_bindings_blink", 62 "//device/vibration:mojo_bindings_blink",
62 "//device/vr:mojo_bindings_blink", 63 "//device/vr:mojo_bindings_blink",
63 "//media/mojo/interfaces:image_capture_blink", 64 "//media/mojo/interfaces:image_capture_blink",
64 "//third_party/WebKit/Source/core", 65 "//third_party/WebKit/Source/core",
65 "//third_party/WebKit/public:mojo_bindings", 66 "//third_party/WebKit/public:mojo_bindings",
66 "//third_party/WebKit/public:mojo_bindings_blink", 67 "//third_party/WebKit/public:mojo_bindings_blink",
67 "//third_party/icu", 68 "//third_party/icu",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 } 118 }
118 119
119 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate d 120 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate d
120 group("make_modules_generated") { 121 group("make_modules_generated") {
121 public_deps = [ 122 public_deps = [
122 ":module_names", 123 ":module_names",
123 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", 124 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated",
124 "//third_party/WebKit/Source/core:core_event_interfaces", 125 "//third_party/WebKit/Source/core:core_event_interfaces",
125 ] 126 ]
126 } 127 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698