| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 "graphics/gpu/WebGLImageBufferSurface.h", | 348 "graphics/gpu/WebGLImageBufferSurface.h", |
| 349 "graphics/gpu/WebGLImageConversion.cpp", | 349 "graphics/gpu/WebGLImageConversion.cpp", |
| 350 "graphics/gpu/WebGLImageConversion.h", | 350 "graphics/gpu/WebGLImageConversion.h", |
| 351 "graphics/Gradient.cpp", | 351 "graphics/Gradient.cpp", |
| 352 "graphics/Gradient.h", | 352 "graphics/Gradient.h", |
| 353 "graphics/GradientGeneratedImage.cpp", | 353 "graphics/GradientGeneratedImage.cpp", |
| 354 "graphics/GradientGeneratedImage.h", | 354 "graphics/GradientGeneratedImage.h", |
| 355 "graphics/GraphicsContext.cpp", | 355 "graphics/GraphicsContext.cpp", |
| 356 "graphics/GraphicsContext.h", | 356 "graphics/GraphicsContext.h", |
| 357 "graphics/GraphicsContextAnnotation.h", | 357 "graphics/GraphicsContextAnnotation.h", |
| 358 "graphics/GraphicsContextCullSaver.h", | |
| 359 "graphics/GraphicsContextRecorder.cpp", | 358 "graphics/GraphicsContextRecorder.cpp", |
| 360 "graphics/GraphicsContextRecorder.h", | 359 "graphics/GraphicsContextRecorder.h", |
| 361 "graphics/GraphicsContextState.cpp", | 360 "graphics/GraphicsContextState.cpp", |
| 362 "graphics/GraphicsContextState.h", | 361 "graphics/GraphicsContextState.h", |
| 363 "graphics/GraphicsContextStateSaver.h", | 362 "graphics/GraphicsContextStateSaver.h", |
| 364 "graphics/GraphicsTypes.cpp", | 363 "graphics/GraphicsTypes.cpp", |
| 365 "graphics/GraphicsTypes.h", | 364 "graphics/GraphicsTypes.h", |
| 366 "graphics/GraphicsTypes3D.h", | 365 "graphics/GraphicsTypes3D.h", |
| 367 "graphics/Image.cpp", | 366 "graphics/Image.cpp", |
| 368 "graphics/Image.h", | 367 "graphics/Image.h", |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 # See https://bugs.webkit.org/show_bug.cgi?id=62916. | 776 # See https://bugs.webkit.org/show_bug.cgi?id=62916. |
| 778 # TODO(GYP) | 777 # TODO(GYP) |
| 779 #'cflags': ['-marm'], | 778 #'cflags': ['-marm'], |
| 780 # 'conditions': [ | 779 # 'conditions': [ |
| 781 # ['OS=="android"', { | 780 # ['OS=="android"', { |
| 782 # 'cflags!': ['-mthumb'], | 781 # 'cflags!': ['-mthumb'], |
| 783 # }], | 782 # }], |
| 784 # ], | 783 # ], |
| 785 } | 784 } |
| 786 } | 785 } |
| OLD | NEW |