| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 if (current_cpu == "arm") { | 8 if (current_cpu == "arm") { |
| 9 import("//build/config/arm.gni") | 9 import("//build/config/arm.gni") |
| 10 } | 10 } |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 | 326 |
| 327 # GPU | 327 # GPU |
| 328 if (skia_support_gpu) { | 328 if (skia_support_gpu) { |
| 329 sources += gypi_skia_gpu.skgpu_sources | 329 sources += gypi_skia_gpu.skgpu_sources |
| 330 sources += gypi_skia_gpu.skgpu_null_gl_sources | 330 sources += gypi_skia_gpu.skgpu_null_gl_sources |
| 331 } | 331 } |
| 332 | 332 |
| 333 # Remove unused util files include in utils.gypi | 333 # Remove unused util files include in utils.gypi |
| 334 sources -= [ | 334 sources -= [ |
| 335 "//third_party/skia/src/utils/SkBitmapHasher.cpp", | 335 "//third_party/skia/src/utils/SkBitmapHasher.cpp", |
| 336 "//third_party/skia/src/utils/SkBitmapRegionCanvas.cpp", |
| 337 "//third_party/skia/src/utils/SkBitmapRegionDecoderInterface.cpp", |
| 338 "//third_party/skia/src/utils/SkBitmapRegionSampler.cpp", |
| 336 "//third_party/skia/src/utils/SkBoundaryPatch.cpp", | 339 "//third_party/skia/src/utils/SkBoundaryPatch.cpp", |
| 337 "//third_party/skia/src/utils/SkCamera.cpp", | 340 "//third_party/skia/src/utils/SkCamera.cpp", |
| 338 "//third_party/skia/src/utils/SkCubicInterval.cpp", | 341 "//third_party/skia/src/utils/SkCubicInterval.cpp", |
| 339 "//third_party/skia/src/utils/SkCullPoints.cpp", | 342 "//third_party/skia/src/utils/SkCullPoints.cpp", |
| 340 "//third_party/skia/src/utils/SkDumpCanvas.cpp", | 343 "//third_party/skia/src/utils/SkDumpCanvas.cpp", |
| 341 "//third_party/skia/src/utils/SkFrontBufferedStream.cpp", | 344 "//third_party/skia/src/utils/SkFrontBufferedStream.cpp", |
| 342 "//third_party/skia/src/utils/SkInterpolator.cpp", | 345 "//third_party/skia/src/utils/SkInterpolator.cpp", |
| 343 "//third_party/skia/src/utils/SkLayer.cpp", | 346 "//third_party/skia/src/utils/SkLayer.cpp", |
| 344 "//third_party/skia/src/utils/SkMD5.cpp", | 347 "//third_party/skia/src/utils/SkMD5.cpp", |
| 345 "//third_party/skia/src/utils/SkMeshUtils.cpp", | 348 "//third_party/skia/src/utils/SkMeshUtils.cpp", |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 ] | 670 ] |
| 668 | 671 |
| 669 deps = [ | 672 deps = [ |
| 670 ":skia", | 673 ":skia", |
| 671 "//base", | 674 "//base", |
| 672 "//base/test:test_support", | 675 "//base/test:test_support", |
| 673 "//build/config/sanitizers:deps", | 676 "//build/config/sanitizers:deps", |
| 674 ] | 677 ] |
| 675 } | 678 } |
| 676 } | 679 } |
| OLD | NEW |