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

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

Issue 750663002: Remove DOMStringList. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | sky/engine/core/dom/DOMStringList.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 "dom/DocumentStyleSheetCollection.h", 458 "dom/DocumentStyleSheetCollection.h",
459 "dom/DocumentStyleSheetCollector.cpp", 459 "dom/DocumentStyleSheetCollector.cpp",
460 "dom/DocumentStyleSheetCollector.h", 460 "dom/DocumentStyleSheetCollector.h",
461 "dom/DocumentSupplementable.h", 461 "dom/DocumentSupplementable.h",
462 "dom/DOMError.cpp", 462 "dom/DOMError.cpp",
463 "dom/DOMError.h", 463 "dom/DOMError.h",
464 "dom/DOMException.cpp", 464 "dom/DOMException.cpp",
465 "dom/DOMException.h", 465 "dom/DOMException.h",
466 "dom/DOMSettableTokenList.cpp", 466 "dom/DOMSettableTokenList.cpp",
467 "dom/DOMSettableTokenList.h", 467 "dom/DOMSettableTokenList.h",
468 "dom/DOMStringList.cpp",
469 "dom/DOMStringList.h",
470 "dom/DOMTimeStamp.h", 468 "dom/DOMTimeStamp.h",
471 "dom/DOMTokenList.cpp", 469 "dom/DOMTokenList.cpp",
472 "dom/DOMTokenList.h", 470 "dom/DOMTokenList.h",
473 "dom/DOMURL.cpp", 471 "dom/DOMURL.cpp",
474 "dom/DOMURL.h", 472 "dom/DOMURL.h",
475 "dom/DOMURLUtils.cpp", 473 "dom/DOMURLUtils.cpp",
476 "dom/DOMURLUtils.h", 474 "dom/DOMURLUtils.h",
477 "dom/DOMURLUtilsReadOnly.cpp", 475 "dom/DOMURLUtilsReadOnly.cpp",
478 "dom/DOMURLUtilsReadOnly.h", 476 "dom/DOMURLUtilsReadOnly.h",
479 "dom/Element.cpp", 477 "dom/Element.cpp",
(...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after
1385 "css/StyleSheetList.idl", 1383 "css/StyleSheetList.idl",
1386 "dom/Attr.idl", 1384 "dom/Attr.idl",
1387 "dom/CharacterData.idl", 1385 "dom/CharacterData.idl",
1388 "dom/ClientRect.idl", 1386 "dom/ClientRect.idl",
1389 "dom/ClientRectList.idl", 1387 "dom/ClientRectList.idl",
1390 "dom/Document.idl", 1388 "dom/Document.idl",
1391 "dom/DocumentFragment.idl", 1389 "dom/DocumentFragment.idl",
1392 "dom/DOMError.idl", 1390 "dom/DOMError.idl",
1393 "dom/DOMException.idl", 1391 "dom/DOMException.idl",
1394 "dom/DOMSettableTokenList.idl", 1392 "dom/DOMSettableTokenList.idl",
1395 "dom/DOMStringList.idl",
1396 "dom/DOMTokenList.idl", 1393 "dom/DOMTokenList.idl",
1397 "dom/Element.idl", 1394 "dom/Element.idl",
1398 "dom/MutationObserver.idl", 1395 "dom/MutationObserver.idl",
1399 "dom/MutationRecord.idl", 1396 "dom/MutationRecord.idl",
1400 "dom/Node.idl", 1397 "dom/Node.idl",
1401 "dom/NodeList.idl", 1398 "dom/NodeList.idl",
1402 "dom/Range.idl", 1399 "dom/Range.idl",
1403 "dom/RequestAnimationFrameCallback.idl", 1400 "dom/RequestAnimationFrameCallback.idl",
1404 "dom/shadow/ShadowRoot.idl", 1401 "dom/shadow/ShadowRoot.idl",
1405 "dom/Text.idl", 1402 "dom/Text.idl",
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
1532 "events/ProgressEvent.idl", 1529 "events/ProgressEvent.idl",
1533 "events/ResourceProgressEvent.idl", 1530 "events/ResourceProgressEvent.idl",
1534 "events/TextEvent.idl", 1531 "events/TextEvent.idl",
1535 "events/TouchEvent.idl", 1532 "events/TouchEvent.idl",
1536 "events/TransitionEvent.idl", 1533 "events/TransitionEvent.idl",
1537 "events/UIEvent.idl", 1534 "events/UIEvent.idl",
1538 "events/AnimationEvent.idl", 1535 "events/AnimationEvent.idl",
1539 "events/WheelEvent.idl", 1536 "events/WheelEvent.idl",
1540 "html/canvas/WebGLContextEvent.idl", 1537 "html/canvas/WebGLContextEvent.idl",
1541 ], "abspath") 1538 ], "abspath")
OLDNEW
« no previous file with comments | « no previous file | sky/engine/core/dom/DOMStringList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698