| 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("//third_party/WebKit/Source/build/scripts/scripts.gni") | 6 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 7 import("//third_party/WebKit/Source/config.gni") | 7 import("//third_party/WebKit/Source/config.gni") |
| 8 import("//third_party/WebKit/Source/platform/platform_generated.gni") | 8 import("//third_party/WebKit/Source/platform/platform_generated.gni") |
| 9 | 9 |
| 10 platform_gypi = exec_script( | 10 platform_gypi = exec_script( |
| 11 "//build/gypi_to_gn.py", | 11 "//build/gypi_to_gn.py", |
| 12 [ rebase_path("blink_platform.gypi") ], | 12 [ rebase_path("blink_platform.gypi") ], |
| 13 "scope", | 13 "scope", |
| 14 [ "blink_platform.gypi" ]) | 14 [ "blink_platform.gypi" ]) |
| 15 # TODO(GYP) Uncomment when the targets below that need this value are enabled. | 15 # TODO(GYP) Uncomment when the targets below that need this value are enabled. |
| 16 #heap_gypi = exec_script( | 16 #heap_gypi = exec_script( |
| 17 # "//build/gypi_to_gn.py", | 17 # "//build/gypi_to_gn.py", |
| 18 # [ rebase_path("heap/blink_heap.gypi") ], | 18 # [ rebase_path("heap/blink_heap.gypi") ], |
| 19 # "scope", | 19 # "scope", |
| 20 # [ "heap/blink_heap.gypi" ]) | 20 # [ "heap/blink_heap.gypi" ]) |
| 21 blink_platform_neon_files = [ | 21 blink_platform_neon_files = [ |
| 22 "graphics/cpu/arm/WebGLImageConversionNEON.h", | 22 "graphics/cpu/arm/WebGLImageConversionNEON.h", |
| 23 "graphics/cpu/arm/filters/FEBlendNEON.h", | 23 "graphics/cpu/arm/filters/FEBlendNEON.h", |
| 24 "graphics/cpu/arm/filters/FECompositeArithmeticNEON.h", | 24 "graphics/cpu/arm/filters/FECompositeArithmeticNEON.h", |
| 25 "graphics/cpu/arm/filters/FEGaussianBlurNEON.h", | 25 "graphics/cpu/arm/filters/FEGaussianBlurNEON.h", |
| 26 "graphics/cpu/arm/filters/FELightingNEON.h", | |
| 27 "graphics/cpu/arm/filters/NEONHelpers.h", | 26 "graphics/cpu/arm/filters/NEONHelpers.h", |
| 28 ] | 27 ] |
| 29 | 28 |
| 30 # blink_common in blink_platform.gyp | 29 # blink_common in blink_platform.gyp |
| 31 component("blink_common") { | 30 component("blink_common") { |
| 32 sources = [ | 31 sources = [ |
| 33 "exported/WebCString.cpp", | 32 "exported/WebCString.cpp", |
| 34 "exported/WebString.cpp", | 33 "exported/WebString.cpp", |
| 35 "exported/WebCommon.cpp", | 34 "exported/WebCommon.cpp", |
| 36 ] | 35 ] |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 #'cflags': ['-marm'], | 445 #'cflags': ['-marm'], |
| 447 # 'conditions': [ | 446 # 'conditions': [ |
| 448 # ['OS=="android"', { | 447 # ['OS=="android"', { |
| 449 # 'cflags!': ['-mthumb'], | 448 # 'cflags!': ['-mthumb'], |
| 450 # }], | 449 # }], |
| 451 # ], | 450 # ], |
| 452 | 451 |
| 453 deps = [ ":blink_common" ] | 452 deps = [ ":blink_common" ] |
| 454 } | 453 } |
| 455 } | 454 } |
| OLD | NEW |