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 | 8 |
9 if (current_cpu == "arm") { | 9 if (current_cpu == "arm") { |
10 import("//build/config/arm.gni") | 10 import("//build/config/arm.gni") |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 | 270 |
271 # Remove unused util files include in utils.gypi | 271 # Remove unused util files include in utils.gypi |
272 sources -= [ | 272 sources -= [ |
273 "//third_party/skia/src/utils/SkBoundaryPatch.cpp", | 273 "//third_party/skia/src/utils/SkBoundaryPatch.cpp", |
274 "//third_party/skia/src/utils/SkCamera.cpp", | 274 "//third_party/skia/src/utils/SkCamera.cpp", |
275 "//third_party/skia/src/utils/SkDumpCanvas.cpp", | 275 "//third_party/skia/src/utils/SkDumpCanvas.cpp", |
276 "//third_party/skia/src/utils/SkFrontBufferedStream.cpp", | 276 "//third_party/skia/src/utils/SkFrontBufferedStream.cpp", |
277 "//third_party/skia/src/utils/SkInterpolator.cpp", | 277 "//third_party/skia/src/utils/SkInterpolator.cpp", |
278 "//third_party/skia/src/utils/SkLayer.cpp", | 278 "//third_party/skia/src/utils/SkLayer.cpp", |
279 "//third_party/skia/src/utils/SkMeshUtils.cpp", | 279 "//third_party/skia/src/utils/SkMeshUtils.cpp", |
280 "//third_party/skia/src/utils/SkNinePatch.cpp", | |
281 "//third_party/skia/src/utils/SkParsePath.cpp", | 280 "//third_party/skia/src/utils/SkParsePath.cpp", |
282 | 281 |
283 #testing | 282 #testing |
284 "//third_party/skia/src/fonts/SkGScalerContext.cpp", | 283 "//third_party/skia/src/fonts/SkGScalerContext.cpp", |
285 ] | 284 ] |
286 | 285 |
287 if (is_win) { | 286 if (is_win) { |
288 sources -= [ | 287 sources -= [ |
289 # Keeping _win.cpp | 288 # Keeping _win.cpp |
290 "//third_party/skia/src/utils/SkThreadUtils_pthread.cpp", | 289 "//third_party/skia/src/utils/SkThreadUtils_pthread.cpp", |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 | 539 |
541 configs -= [ "//build/config/compiler:chromium_code" ] | 540 configs -= [ "//build/config/compiler:chromium_code" ] |
542 configs += [ | 541 configs += [ |
543 ":skia_config", | 542 ":skia_config", |
544 ":skia_library_config", | 543 ":skia_library_config", |
545 "//build/config/compiler:no_chromium_code", | 544 "//build/config/compiler:no_chromium_code", |
546 ] | 545 ] |
547 | 546 |
548 visibility = [ ":skia" ] | 547 visibility = [ ":skia" ] |
549 } | 548 } |
OLD | NEW |