| 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 | 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "exported/WebTransformKeyframe.cpp", | 137 "exported/WebTransformKeyframe.cpp", |
| 138 "exported/WebURL.cpp", | 138 "exported/WebURL.cpp", |
| 139 "exported/WebURLError.cpp", | 139 "exported/WebURLError.cpp", |
| 140 "exported/WebURLLoadTiming.cpp", | 140 "exported/WebURLLoadTiming.cpp", |
| 141 "exported/WebURLRequest.cpp", | 141 "exported/WebURLRequest.cpp", |
| 142 "exported/WebURLRequestPrivate.h", | 142 "exported/WebURLRequestPrivate.h", |
| 143 "exported/WebURLResponse.cpp", | 143 "exported/WebURLResponse.cpp", |
| 144 "exported/WebURLResponsePrivate.h", | 144 "exported/WebURLResponsePrivate.h", |
| 145 "exported/WrappedResourceRequest.h", | 145 "exported/WrappedResourceRequest.h", |
| 146 "exported/WrappedResourceResponse.h", | 146 "exported/WrappedResourceResponse.h", |
| 147 "fetcher/DataPipeDrainer.cpp", | |
| 148 "fetcher/DataPipeDrainer.h", | |
| 149 "fetcher/MojoFetcher.cpp", | 147 "fetcher/MojoFetcher.cpp", |
| 150 "fetcher/MojoFetcher.h", | 148 "fetcher/MojoFetcher.h", |
| 151 "FloatConversion.h", | 149 "FloatConversion.h", |
| 152 "fonts/AlternateFontFamily.h", | 150 "fonts/AlternateFontFamily.h", |
| 153 "fonts/android/FontCacheAndroid.cpp", | 151 "fonts/android/FontCacheAndroid.cpp", |
| 154 "fonts/Character.cpp", | 152 "fonts/Character.cpp", |
| 155 "fonts/Character.h", | 153 "fonts/Character.h", |
| 156 "fonts/CustomFontData.h", | 154 "fonts/CustomFontData.h", |
| 157 "fonts/FixedPitchFontType.h", | 155 "fonts/FixedPitchFontType.h", |
| 158 "fonts/Font.cpp", | 156 "fonts/Font.cpp", |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 # See https://bugs.webkit.org/show_bug.cgi?id=62916. | 774 # See https://bugs.webkit.org/show_bug.cgi?id=62916. |
| 777 # TODO(GYP) | 775 # TODO(GYP) |
| 778 #'cflags': ['-marm'], | 776 #'cflags': ['-marm'], |
| 779 # 'conditions': [ | 777 # 'conditions': [ |
| 780 # ['OS=="android"', { | 778 # ['OS=="android"', { |
| 781 # 'cflags!': ['-mthumb'], | 779 # 'cflags!': ['-mthumb'], |
| 782 # }], | 780 # }], |
| 783 # ], | 781 # ], |
| 784 } | 782 } |
| 785 } | 783 } |
| OLD | NEW |