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

Side by Side Diff: skia/BUILD.gn

Issue 316213005: Skia roll 4962140:b0b0feb (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months 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 | Annotate | Revision Log
« no previous file with comments | « DEPS ('k') | skia/skia_gn_files.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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 # Fixup skia library sources. 324 # Fixup skia library sources.
325 if (is_win) { 325 if (is_win) {
326 sources -= [ 326 sources -= [
327 "//third_party/skia/src/ports/SkOSFile_posix.cpp", 327 "//third_party/skia/src/ports/SkOSFile_posix.cpp",
328 "//third_party/skia/src/ports/SkTime_Unix.cpp", 328 "//third_party/skia/src/ports/SkTime_Unix.cpp",
329 "//third_party/skia/src/ports/SkTLS_pthread.cpp", 329 "//third_party/skia/src/ports/SkTLS_pthread.cpp",
330 ] 330 ]
331 } else { 331 } else {
332 sources -= [ 332 sources -= [
333 "//third_party/skia/src/ports/SkFontHost_win.cpp", 333 "//third_party/skia/src/ports/SkFontHost_win.cpp",
334 "//third_party/skia/src/ports/SkFontHost_win_dw.cpp",
335 "//third_party/skia/src/ports/SkFontMgr_default_gdi.cpp", 334 "//third_party/skia/src/ports/SkFontMgr_default_gdi.cpp",
335 "//third_party/skia/src/ports/SkFontMgr_win_dw.cpp",
336 "//third_party/skia/src/ports/SkOSFile_win.cpp", 336 "//third_party/skia/src/ports/SkOSFile_win.cpp",
337 "//third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp", 337 "//third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp",
338 "//third_party/skia/src/ports/SkScalerContext_win_dw.cpp",
339 "//third_party/skia/src/ports/SkScalerContext_win_dw.h",
338 "//third_party/skia/src/ports/SkTLS_win.cpp", 340 "//third_party/skia/src/ports/SkTLS_win.cpp",
341 "//third_party/skia/src/ports/SkTypeface_win_dw.cpp",
342 "//third_party/skia/src/ports/SkTypeface_win_dw.h",
339 ] 343 ]
340 } 344 }
341 if (!is_android) { 345 if (!is_android) {
342 sources -= [ 346 sources -= [
343 "//third_party/skia/src/ports/SkFontConfigInterface_android.cpp", 347 "//third_party/skia/src/ports/SkFontConfigInterface_android.cpp",
344 "//third_party/skia/src/ports/SkFontConfigParser_android.cpp", 348 "//third_party/skia/src/ports/SkFontConfigParser_android.cpp",
345 ] 349 ]
346 } 350 }
347 if (!is_mac) { 351 if (!is_mac) {
348 sources -= [ 352 sources -= [
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 ":skia_config", 546 ":skia_config",
543 "//build/config/compiler:no_chromium_code" 547 "//build/config/compiler:no_chromium_code"
544 ] 548 ]
545 549
546 deps = [ 550 deps = [
547 "//base", 551 "//base",
548 ] 552 ]
549 553
550 visibility = ":skia" 554 visibility = ":skia"
551 } 555 }
OLDNEW
« no previous file with comments | « DEPS ('k') | skia/skia_gn_files.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698