Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: skia/BUILD.gn

Issue 684303002: Build and link SkCondVar in Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | skia/skia_library.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 if (cpu_arch == "arm") { 7 if (cpu_arch == "arm") {
8 import("//build/config/arm.gni") 8 import("//build/config/arm.gni")
9 } 9 }
10 10
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 } 331 }
332 332
333 # GPU 333 # GPU
334 if (skia_support_gpu) { 334 if (skia_support_gpu) {
335 sources += gypi_skia_gpu.skgpu_sources 335 sources += gypi_skia_gpu.skgpu_sources
336 sources += gypi_skia_gpu.skgpu_null_gl_sources 336 sources += gypi_skia_gpu.skgpu_null_gl_sources
337 } 337 }
338 338
339 # Remove unused util files include in utils.gypi 339 # Remove unused util files include in utils.gypi
340 sources -= [ 340 sources -= [
341 "//third_party/skia/src/utils/SkCondVar.cpp",
342 "//third_party/skia/src/utils/SkCondVar.h",
343 "//third_party/skia/src/utils/SkRunnable.h",
344
345 "//third_party/skia/include/utils/SkBoundaryPatch.h", 341 "//third_party/skia/include/utils/SkBoundaryPatch.h",
346 "//third_party/skia/include/utils/SkFrontBufferedStream.h", 342 "//third_party/skia/include/utils/SkFrontBufferedStream.h",
347 "//third_party/skia/include/utils/SkCamera.h", 343 "//third_party/skia/include/utils/SkCamera.h",
348 "//third_party/skia/include/utils/SkCanvasStateUtils.h", 344 "//third_party/skia/include/utils/SkCanvasStateUtils.h",
349 "//third_party/skia/include/utils/SkCubicInterval.h", 345 "//third_party/skia/include/utils/SkCubicInterval.h",
350 "//third_party/skia/include/utils/SkCullPoints.h", 346 "//third_party/skia/include/utils/SkCullPoints.h",
351 "//third_party/skia/include/utils/SkDebugUtils.h", 347 "//third_party/skia/include/utils/SkDebugUtils.h",
352 "//third_party/skia/include/utils/SkDumpCanvas.h", 348 "//third_party/skia/include/utils/SkDumpCanvas.h",
353 "//third_party/skia/include/utils/SkEventTracer.h", 349 "//third_party/skia/include/utils/SkEventTracer.h",
354 "//third_party/skia/include/utils/SkInterpolator.h", 350 "//third_party/skia/include/utils/SkInterpolator.h",
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 ":skia_library_config", 710 ":skia_library_config",
715 "//build/config/compiler:no_chromium_code" 711 "//build/config/compiler:no_chromium_code"
716 ] 712 ]
717 713
718 deps = [ 714 deps = [
719 "//base", 715 "//base",
720 ] 716 ]
721 717
722 visibility = [ ":skia" ] 718 visibility = [ ":skia" ]
723 } 719 }
OLDNEW
« no previous file with comments | « no previous file | skia/skia_library.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698