| OLD | NEW |
| 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 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 # Most targets in this file are private actions so use that as the default. | 10 # Most targets in this file are private actions so use that as the default. |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "Widget.cpp", | 158 "Widget.cpp", |
| 159 "Widget.h", | 159 "Widget.h", |
| 160 "WindowsKeyboardCodes.h", | 160 "WindowsKeyboardCodes.h", |
| 161 "animation/AnimationUtilities.h", | 161 "animation/AnimationUtilities.h", |
| 162 "animation/AnimationValue.h", | 162 "animation/AnimationValue.h", |
| 163 "animation/KeyframeValueList.cpp", | 163 "animation/KeyframeValueList.cpp", |
| 164 "animation/KeyframeValueList.h", | 164 "animation/KeyframeValueList.h", |
| 165 "animation/TimingFunction.cpp", | 165 "animation/TimingFunction.cpp", |
| 166 "animation/TimingFunction.h", | 166 "animation/TimingFunction.h", |
| 167 "animation/UnitBezier.h", | 167 "animation/UnitBezier.h", |
| 168 "clipboard/ClipboardMimeTypes.cpp", | |
| 169 "clipboard/ClipboardMimeTypes.h", | |
| 170 "clipboard/ClipboardUtilities.cpp", | |
| 171 "clipboard/ClipboardUtilities.h", | |
| 172 "clipboard/ClipboardUtilitiesPosix.cpp", | |
| 173 "exported/Platform.cpp", | 168 "exported/Platform.cpp", |
| 174 "exported/ServiceProvider.cpp", | 169 "exported/ServiceProvider.cpp", |
| 175 "exported/WebArrayBuffer.cpp", | 170 "exported/WebArrayBuffer.cpp", |
| 176 "exported/WebCString.cpp", | 171 "exported/WebCString.cpp", |
| 177 "exported/WebCommon.cpp", | 172 "exported/WebCommon.cpp", |
| 178 "exported/WebData.cpp", | 173 "exported/WebData.cpp", |
| 179 "exported/WebHTTPBody.cpp", | 174 "exported/WebHTTPBody.cpp", |
| 180 "exported/WebHTTPLoadInfo.cpp", | 175 "exported/WebHTTPLoadInfo.cpp", |
| 181 "exported/WebImageSkia.cpp", | 176 "exported/WebImageSkia.cpp", |
| 182 "exported/WebString.cpp", | 177 "exported/WebString.cpp", |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 "ClockTest.cpp", | 647 "ClockTest.cpp", |
| 653 "DecimalTest.cpp", | 648 "DecimalTest.cpp", |
| 654 "LayoutUnitTest.cpp", | 649 "LayoutUnitTest.cpp", |
| 655 "LifecycleContextTest.cpp", | 650 "LifecycleContextTest.cpp", |
| 656 "PurgeableVectorTest.cpp", | 651 "PurgeableVectorTest.cpp", |
| 657 "SharedBufferTest.cpp", | 652 "SharedBufferTest.cpp", |
| 658 "TestingPlatformSupport.cpp", | 653 "TestingPlatformSupport.cpp", |
| 659 "TestingPlatformSupport.h", | 654 "TestingPlatformSupport.h", |
| 660 "animation/TimingFunctionTest.cpp", | 655 "animation/TimingFunctionTest.cpp", |
| 661 "animation/UnitBezierTest.cpp", | 656 "animation/UnitBezierTest.cpp", |
| 662 "clipboard/ClipboardUtilitiesTest.cpp", | |
| 663 "fonts/FontCacheTest.cpp", | 657 "fonts/FontCacheTest.cpp", |
| 664 "fonts/FontDescriptionTest.cpp", | 658 "fonts/FontDescriptionTest.cpp", |
| 665 "fonts/FontTest.cpp", | 659 "fonts/FontTest.cpp", |
| 666 "fonts/GlyphPageTreeNodeTest.cpp", | 660 "fonts/GlyphPageTreeNodeTest.cpp", |
| 667 "fonts/android/FontCacheAndroidTest.cpp", | 661 "fonts/android/FontCacheAndroidTest.cpp", |
| 668 "geometry/FloatBoxTest.cpp", | 662 "geometry/FloatBoxTest.cpp", |
| 669 "geometry/FloatBoxTestHelpers.cpp", | 663 "geometry/FloatBoxTestHelpers.cpp", |
| 670 "geometry/FloatRoundedRectTest.cpp", | 664 "geometry/FloatRoundedRectTest.cpp", |
| 671 "geometry/RegionTest.cpp", | 665 "geometry/RegionTest.cpp", |
| 672 "geometry/RoundedRectTest.cpp", | 666 "geometry/RoundedRectTest.cpp", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 # See https://bugs.webkit.org/show_bug.cgi?id=62916. | 720 # See https://bugs.webkit.org/show_bug.cgi?id=62916. |
| 727 # TODO(GYP) | 721 # TODO(GYP) |
| 728 #'cflags': ['-marm'], | 722 #'cflags': ['-marm'], |
| 729 # 'conditions': [ | 723 # 'conditions': [ |
| 730 # ['OS=="android"', { | 724 # ['OS=="android"', { |
| 731 # 'cflags!': ['-mthumb'], | 725 # 'cflags!': ['-mthumb'], |
| 732 # }], | 726 # }], |
| 733 # ], | 727 # ], |
| 734 } | 728 } |
| 735 } | 729 } |
| OLD | NEW |