| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 "graphics/BitmapImage.h", | 260 "graphics/BitmapImage.h", |
| 261 "graphics/Canvas2DImageBufferSurface.h", | 261 "graphics/Canvas2DImageBufferSurface.h", |
| 262 "graphics/Canvas2DLayerBridge.cpp", | 262 "graphics/Canvas2DLayerBridge.cpp", |
| 263 "graphics/Canvas2DLayerBridge.h", | 263 "graphics/Canvas2DLayerBridge.h", |
| 264 "graphics/Canvas2DLayerManager.cpp", | 264 "graphics/Canvas2DLayerManager.cpp", |
| 265 "graphics/Canvas2DLayerManager.h", | 265 "graphics/Canvas2DLayerManager.h", |
| 266 "graphics/Color.cpp", | 266 "graphics/Color.cpp", |
| 267 "graphics/Color.h", | 267 "graphics/Color.h", |
| 268 "graphics/ColorSpace.cpp", | 268 "graphics/ColorSpace.cpp", |
| 269 "graphics/ColorSpace.h", | 269 "graphics/ColorSpace.h", |
| 270 "graphics/CompositingReasons.cpp", | |
| 271 "graphics/CompositingReasons.h", | |
| 272 "graphics/CrossfadeGeneratedImage.cpp", | 270 "graphics/CrossfadeGeneratedImage.cpp", |
| 273 "graphics/CrossfadeGeneratedImage.h", | 271 "graphics/CrossfadeGeneratedImage.h", |
| 274 "graphics/DashArray.h", | 272 "graphics/DashArray.h", |
| 275 "graphics/DecodingImageGenerator.cpp", | 273 "graphics/DecodingImageGenerator.cpp", |
| 276 "graphics/DecodingImageGenerator.h", | 274 "graphics/DecodingImageGenerator.h", |
| 277 "graphics/DeferredImageDecoder.cpp", | 275 "graphics/DeferredImageDecoder.cpp", |
| 278 "graphics/DeferredImageDecoder.h", | 276 "graphics/DeferredImageDecoder.h", |
| 279 "graphics/DisplayList.cpp", | 277 "graphics/DisplayList.cpp", |
| 280 "graphics/DisplayList.h", | 278 "graphics/DisplayList.h", |
| 281 "graphics/DrawLooperBuilder.cpp", | 279 "graphics/DrawLooperBuilder.cpp", |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 # See https://bugs.webkit.org/show_bug.cgi?id=62916. | 777 # See https://bugs.webkit.org/show_bug.cgi?id=62916. |
| 780 # TODO(GYP) | 778 # TODO(GYP) |
| 781 #'cflags': ['-marm'], | 779 #'cflags': ['-marm'], |
| 782 # 'conditions': [ | 780 # 'conditions': [ |
| 783 # ['OS=="android"', { | 781 # ['OS=="android"', { |
| 784 # 'cflags!': ['-mthumb'], | 782 # 'cflags!': ['-mthumb'], |
| 785 # }], | 783 # }], |
| 786 # ], | 784 # ], |
| 787 } | 785 } |
| 788 } | 786 } |
| OLD | NEW |