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

Side by Side Diff: sky/engine/core/core.gni

Issue 943013002: Implement Custom Elements (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: attributeChanged***d***Callback Created 5 years, 10 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 sky_core_output_dir = "$root_gen_dir/sky/core" 5 sky_core_output_dir = "$root_gen_dir/sky/core"
6 6
7 sky_core_files = [ 7 sky_core_files = [
8 "animation/ActiveAnimations.cpp", 8 "animation/ActiveAnimations.cpp",
9 "animation/ActiveAnimations.h", 9 "animation/ActiveAnimations.h",
10 "animation/animatable/AnimatableClipPathOperation.cpp", 10 "animation/animatable/AnimatableClipPathOperation.cpp",
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 "dom/custom/CustomElementProcessingStack.h", 378 "dom/custom/CustomElementProcessingStack.h",
379 "dom/custom/CustomElementProcessingStep.h", 379 "dom/custom/CustomElementProcessingStep.h",
380 "dom/custom/CustomElementRegistrationContext.cpp", 380 "dom/custom/CustomElementRegistrationContext.cpp",
381 "dom/custom/CustomElementRegistrationContext.h", 381 "dom/custom/CustomElementRegistrationContext.h",
382 "dom/custom/CustomElementRegistry.cpp", 382 "dom/custom/CustomElementRegistry.cpp",
383 "dom/custom/CustomElementRegistry.h", 383 "dom/custom/CustomElementRegistry.h",
384 "dom/custom/CustomElementScheduler.cpp", 384 "dom/custom/CustomElementScheduler.cpp",
385 "dom/custom/CustomElementScheduler.h", 385 "dom/custom/CustomElementScheduler.h",
386 "dom/custom/CustomElementSyncMicrotaskQueue.cpp", 386 "dom/custom/CustomElementSyncMicrotaskQueue.cpp",
387 "dom/custom/CustomElementSyncMicrotaskQueue.h", 387 "dom/custom/CustomElementSyncMicrotaskQueue.h",
388 "dom/custom2/new_custom_element.cc",
389 "dom/custom2/new_custom_element.h",
390 "dom/custom2/new_custom_element_callback_scope.cc",
391 "dom/custom2/new_custom_element_callback_scope.h",
392 "dom/custom2/new_custom_element_registry.cc",
393 "dom/custom2/new_custom_element_registry.h",
388 "dom/Document.cpp", 394 "dom/Document.cpp",
389 "dom/Document.h", 395 "dom/Document.h",
390 "dom/DocumentFragment.cpp", 396 "dom/DocumentFragment.cpp",
391 "dom/DocumentFragment.h", 397 "dom/DocumentFragment.h",
392 "dom/DocumentInit.cpp", 398 "dom/DocumentInit.cpp",
393 "dom/DocumentInit.h", 399 "dom/DocumentInit.h",
394 "dom/DocumentLifecycle.cpp", 400 "dom/DocumentLifecycle.cpp",
395 "dom/DocumentLifecycle.h", 401 "dom/DocumentLifecycle.h",
396 "dom/DocumentLifecycleNotifier.cpp", 402 "dom/DocumentLifecycleNotifier.cpp",
397 "dom/DocumentLifecycleNotifier.h", 403 "dom/DocumentLifecycleNotifier.h",
(...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after
1309 "events/KeyboardEvent.idl", 1315 "events/KeyboardEvent.idl",
1310 "events/PageTransitionEvent.idl", 1316 "events/PageTransitionEvent.idl",
1311 "events/PointerEvent.idl", 1317 "events/PointerEvent.idl",
1312 "events/TextEvent.idl", 1318 "events/TextEvent.idl",
1313 "events/TransitionEvent.idl", 1319 "events/TransitionEvent.idl",
1314 "events/UIEvent.idl", 1320 "events/UIEvent.idl",
1315 "events/WheelEvent.idl", 1321 "events/WheelEvent.idl",
1316 "html/canvas/WebGLContextEvent.idl", 1322 "html/canvas/WebGLContextEvent.idl",
1317 ], 1323 ],
1318 "abspath") 1324 "abspath")
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698