| 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 import("gn/shared_sources.gni") | 6 import("gn/shared_sources.gni") |
| 7 | 7 |
| 8 declare_args() { | 8 declare_args() { |
| 9 skia_enable_tools = !is_fuchsia && !is_component_build | 9 skia_enable_tools = !is_fuchsia && !is_component_build |
| 10 | 10 |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 "src/ports/SkImageEncoder_CG.cpp", | 504 "src/ports/SkImageEncoder_CG.cpp", |
| 505 "src/ports/SkImageGeneratorCG.cpp", | 505 "src/ports/SkImageGeneratorCG.cpp", |
| 506 ] | 506 ] |
| 507 libs += [ | 507 libs += [ |
| 508 "ApplicationServices.framework", | 508 "ApplicationServices.framework", |
| 509 "OpenGL.framework", | 509 "OpenGL.framework", |
| 510 ] | 510 ] |
| 511 } | 511 } |
| 512 | 512 |
| 513 if (is_fuchsia) { | 513 if (is_fuchsia) { |
| 514 sources += [ "src/gpu/gl/GrGLCreateNativeInterface_none.cpp" ] | 514 sources += [ |
| 515 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp", |
| 516 "src/ports/SkDebug_stdio.cpp", |
| 517 ] |
| 515 } | 518 } |
| 516 } | 519 } |
| 517 | 520 |
| 518 skia_h_headers = exec_script("gyp/find.py", | 521 skia_h_headers = exec_script("gyp/find.py", |
| 519 [ "*.h" ] + rebase_path(skia_public_includes), | 522 [ "*.h" ] + rebase_path(skia_public_includes), |
| 520 "list lines", | 523 "list lines", |
| 521 []) - | 524 []) - |
| 522 [ | 525 [ |
| 523 rebase_path("include/gpu/gl/GrGLConfig_chrome.h"), | 526 rebase_path("include/gpu/gl/GrGLConfig_chrome.h"), |
| 524 rebase_path("include/gpu/vk/GrVkBackendContext.h"), | 527 rebase_path("include/gpu/vk/GrVkBackendContext.h"), |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 sources = [ | 816 sources = [ |
| 814 "tools/SkShaper_primitive.cpp", | 817 "tools/SkShaper_primitive.cpp", |
| 815 "tools/using_skia_and_harfbuzz.cpp", | 818 "tools/using_skia_and_harfbuzz.cpp", |
| 816 ] | 819 ] |
| 817 deps = [ | 820 deps = [ |
| 818 ":skia", | 821 ":skia", |
| 819 ] | 822 ] |
| 820 testonly = true | 823 testonly = true |
| 821 } | 824 } |
| 822 } | 825 } |
| OLD | NEW |