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

Side by Side Diff: BUILD.gn

Issue 2271273002: GN: Fuchsia probably cannot link without this. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 Google Inc. 1 # Copyright 2016 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 declare_args() { 6 declare_args() {
7 skia_use_giflib = !is_fuchsia 7 skia_use_giflib = !is_fuchsia
8 skia_use_libwebp = !is_fuchsia 8 skia_use_libwebp = !is_fuchsia
9 } 9 }
10 10
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 "src/ports/SkImageEncoder_CG.cpp", 371 "src/ports/SkImageEncoder_CG.cpp",
372 "src/ports/SkImageGeneratorCG.cpp", 372 "src/ports/SkImageGeneratorCG.cpp",
373 ] 373 ]
374 libs += [ 374 libs += [
375 "ApplicationServices.framework", 375 "ApplicationServices.framework",
376 "OpenGL.framework", 376 "OpenGL.framework",
377 ] 377 ]
378 } 378 }
379 379
380 if (is_fuchsia) { 380 if (is_fuchsia) {
381 sources += [ "src/ports/SkFontMgr_empty_factory.cpp" ] 381 sources += [
382 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp",
383 "src/ports/SkFontMgr_empty_factory.cpp",
384 ]
382 } 385 }
383 } 386 }
384 387
385 skia_h_headers = exec_script("gyp/find.py", 388 skia_h_headers = exec_script("gyp/find.py",
386 [ "*.h" ] + rebase_path(skia_public_includes), 389 [ "*.h" ] + rebase_path(skia_public_includes),
387 "list lines", 390 "list lines",
388 []) - 391 []) -
389 [ 392 [
390 rebase_path("include/gpu/gl/GrGLConfig_chrome.h"), 393 rebase_path("include/gpu/gl/GrGLConfig_chrome.h"),
391 rebase_path("include/gpu/vk/GrVkBackendContext.h"), 394 rebase_path("include/gpu/vk/GrVkBackendContext.h"),
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 "tools/SkShaper_harfbuzz.cpp", 664 "tools/SkShaper_harfbuzz.cpp",
662 "tools/using_skia_and_harfbuzz.cpp", 665 "tools/using_skia_and_harfbuzz.cpp",
663 ] 666 ]
664 deps = [ 667 deps = [
665 ":skia", 668 ":skia",
666 "//third_party/harfbuzz", 669 "//third_party/harfbuzz",
667 ] 670 ]
668 testonly = true 671 testonly = true
669 } 672 }
670 } 673 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698