| 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 "graphics/GradientGeneratedImage.h", | 352 "graphics/GradientGeneratedImage.h", |
| 353 "graphics/GraphicsContext.cpp", | 353 "graphics/GraphicsContext.cpp", |
| 354 "graphics/GraphicsContext.h", | 354 "graphics/GraphicsContext.h", |
| 355 "graphics/GraphicsContextAnnotation.h", | 355 "graphics/GraphicsContextAnnotation.h", |
| 356 "graphics/GraphicsContextCullSaver.h", | 356 "graphics/GraphicsContextCullSaver.h", |
| 357 "graphics/GraphicsContextRecorder.cpp", | 357 "graphics/GraphicsContextRecorder.cpp", |
| 358 "graphics/GraphicsContextRecorder.h", | 358 "graphics/GraphicsContextRecorder.h", |
| 359 "graphics/GraphicsContextState.cpp", | 359 "graphics/GraphicsContextState.cpp", |
| 360 "graphics/GraphicsContextState.h", | 360 "graphics/GraphicsContextState.h", |
| 361 "graphics/GraphicsContextStateSaver.h", | 361 "graphics/GraphicsContextStateSaver.h", |
| 362 "graphics/GraphicsLayer.cpp", | |
| 363 "graphics/GraphicsLayer.h", | |
| 364 "graphics/GraphicsLayerClient.h", | |
| 365 "graphics/GraphicsLayerDebugInfo.cpp", | |
| 366 "graphics/GraphicsLayerDebugInfo.h", | |
| 367 "graphics/GraphicsLayerFactory.h", | |
| 368 "graphics/GraphicsTypes.cpp", | 362 "graphics/GraphicsTypes.cpp", |
| 369 "graphics/GraphicsTypes.h", | 363 "graphics/GraphicsTypes.h", |
| 370 "graphics/GraphicsTypes3D.h", | 364 "graphics/GraphicsTypes3D.h", |
| 371 "graphics/Image.cpp", | 365 "graphics/Image.cpp", |
| 372 "graphics/Image.h", | 366 "graphics/Image.h", |
| 373 "graphics/ImageBuffer.cpp", | 367 "graphics/ImageBuffer.cpp", |
| 374 "graphics/ImageBuffer.h", | 368 "graphics/ImageBuffer.h", |
| 375 "graphics/ImageBufferClient.h", | 369 "graphics/ImageBufferClient.h", |
| 376 "graphics/ImageBufferSurface.cpp", | 370 "graphics/ImageBufferSurface.cpp", |
| 377 "graphics/ImageBufferSurface.h", | 371 "graphics/ImageBufferSurface.h", |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 # See https://bugs.webkit.org/show_bug.cgi?id=62916. | 781 # See https://bugs.webkit.org/show_bug.cgi?id=62916. |
| 788 # TODO(GYP) | 782 # TODO(GYP) |
| 789 #'cflags': ['-marm'], | 783 #'cflags': ['-marm'], |
| 790 # 'conditions': [ | 784 # 'conditions': [ |
| 791 # ['OS=="android"', { | 785 # ['OS=="android"', { |
| 792 # 'cflags!': ['-mthumb'], | 786 # 'cflags!': ['-mthumb'], |
| 793 # }], | 787 # }], |
| 794 # ], | 788 # ], |
| 795 } | 789 } |
| 796 } | 790 } |
| OLD | NEW |