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

Side by Side Diff: third_party/WebKit/Source/core/dom/BUILD.gn

Issue 2555653002: [WIP Prototype] ES6 https://html.spec.whatwg.org/#fetch-a-single-module-script implementation (Closed)
Patch Set: latest working ver that compiles modules but crashes inside V8 when executing Created 4 years 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/core/core.gni") 5 import("//third_party/WebKit/Source/core/core.gni")
6 6
7 blink_core_sources("dom") { 7 blink_core_sources("dom") {
8 split_count = 5 8 split_count = 5
9 9
10 sources = [ 10 sources = [
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 "LayoutTreeBuilder.h", 170 "LayoutTreeBuilder.h",
171 "LayoutTreeBuilderTraversal.cpp", 171 "LayoutTreeBuilderTraversal.cpp",
172 "LayoutTreeBuilderTraversal.h", 172 "LayoutTreeBuilderTraversal.h",
173 "LiveNodeList.cpp", 173 "LiveNodeList.cpp",
174 "LiveNodeList.h", 174 "LiveNodeList.h",
175 "LiveNodeListBase.cpp", 175 "LiveNodeListBase.cpp",
176 "LiveNodeListBase.h", 176 "LiveNodeListBase.h",
177 "MessageChannel.cpp", 177 "MessageChannel.cpp",
178 "MessageChannel.h", 178 "MessageChannel.h",
179 "MessagePort.cpp", 179 "MessagePort.cpp",
180 "ModuleMap.cpp",
181 "ModuleMap.h",
180 "MutationCallback.h", 182 "MutationCallback.h",
181 "MutationObserver.cpp", 183 "MutationObserver.cpp",
182 "MutationObserver.h", 184 "MutationObserver.h",
183 "MutationObserverInterestGroup.cpp", 185 "MutationObserverInterestGroup.cpp",
184 "MutationObserverInterestGroup.h", 186 "MutationObserverInterestGroup.h",
185 "MutationObserverRegistration.cpp", 187 "MutationObserverRegistration.cpp",
186 "MutationObserverRegistration.h", 188 "MutationObserverRegistration.h",
187 "MutationRecord.cpp", 189 "MutationRecord.cpp",
188 "MutationRecord.h", 190 "MutationRecord.h",
189 "NameNodeList.cpp", 191 "NameNodeList.cpp",
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 "shadow/SlotAssignment.h", 393 "shadow/SlotAssignment.h",
392 "shadow/SlotScopedTraversal.cpp", 394 "shadow/SlotScopedTraversal.cpp",
393 "shadow/SlotScopedTraversal.h", 395 "shadow/SlotScopedTraversal.h",
394 ] 396 ]
395 397
396 configs += [ 398 configs += [
397 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 399 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
398 "//build/config/compiler:no_size_t_to_int_warning", 400 "//build/config/compiler:no_size_t_to_int_warning",
399 ] 401 ]
400 } 402 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698