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

Side by Side Diff: sky/engine/platform/BUILD.gn

Issue 646273006: Get rid of ScrollView. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: merge to ToT Created 6 years, 2 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//sky/engine/build/scripts/scripts.gni") 6 import("//sky/engine/build/scripts/scripts.gni")
7 import("//sky/engine/config.gni") 7 import("//sky/engine/config.gni")
8 8
9 # Most targets in this file are private actions so use that as the default. 9 # Most targets in this file are private actions so use that as the default.
10 visibility = [":*"] 10 visibility = [":*"]
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 "network/ResourceRequest.h", 552 "network/ResourceRequest.h",
553 "network/ResourceResponse.cpp", 553 "network/ResourceResponse.cpp",
554 "network/ResourceResponse.h", 554 "network/ResourceResponse.h",
555 "scroll/ProgrammaticScrollAnimator.cpp", 555 "scroll/ProgrammaticScrollAnimator.cpp",
556 "scroll/ProgrammaticScrollAnimator.h", 556 "scroll/ProgrammaticScrollAnimator.h",
557 "scroll/ScrollAnimator.cpp", 557 "scroll/ScrollAnimator.cpp",
558 "scroll/ScrollAnimator.h", 558 "scroll/ScrollAnimator.h",
559 "scroll/ScrollAnimatorNone.cpp", 559 "scroll/ScrollAnimatorNone.cpp",
560 "scroll/ScrollAnimatorNone.h", 560 "scroll/ScrollAnimatorNone.h",
561 "scroll/ScrollTypes.h", 561 "scroll/ScrollTypes.h",
562 "scroll/ScrollView.cpp",
563 "scroll/ScrollableArea.cpp", 562 "scroll/ScrollableArea.cpp",
564 "scroll/ScrollableArea.h", 563 "scroll/ScrollableArea.h",
565 "scroll/Scrollbar.cpp", 564 "scroll/Scrollbar.cpp",
566 "scroll/Scrollbar.h", 565 "scroll/Scrollbar.h",
567 "text/BidiCharacterRun.cpp", 566 "text/BidiCharacterRun.cpp",
568 "text/BidiCharacterRun.h", 567 "text/BidiCharacterRun.h",
569 "text/BidiContext.cpp", 568 "text/BidiContext.cpp",
570 "text/BidiContext.h", 569 "text/BidiContext.h",
571 "text/BidiResolver.h", 570 "text/BidiResolver.h",
572 "text/BidiRunList.h", 571 "text/BidiRunList.h",
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 #'cflags': ['-marm'], 889 #'cflags': ['-marm'],
891 # 'conditions': [ 890 # 'conditions': [
892 # ['OS=="android"', { 891 # ['OS=="android"', {
893 # 'cflags!': ['-mthumb'], 892 # 'cflags!': ['-mthumb'],
894 # }], 893 # }],
895 # ], 894 # ],
896 895
897 deps = [ ":sky_common" ] 896 deps = [ ":sky_common" ]
898 } 897 }
899 } 898 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698