| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |