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 if (!defined(is_skia_standalone)) { | 8 if (!defined(is_skia_standalone)) { |
9 is_skia_standalone = false | 9 is_skia_standalone = false |
10 } | 10 } |
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
656 public_include_dirs = [] | 656 public_include_dirs = [] |
657 if (skia_enable_gpu) { | 657 if (skia_enable_gpu) { |
658 public_defines = [] | 658 public_defines = [] |
659 public_include_dirs += [ "tools/gpu" ] | 659 public_include_dirs += [ "tools/gpu" ] |
660 | 660 |
661 deps = [] | 661 deps = [] |
662 sources = [ | 662 sources = [ |
663 "tools/gpu/GrContextFactory.cpp", | 663 "tools/gpu/GrContextFactory.cpp", |
664 "tools/gpu/GrTest.cpp", | 664 "tools/gpu/GrTest.cpp", |
665 "tools/gpu/TestContext.cpp", | 665 "tools/gpu/TestContext.cpp", |
| 666 "tools/gpu/gl/GLFenceSync.cpp", |
666 "tools/gpu/gl/GLTestContext.cpp", | 667 "tools/gpu/gl/GLTestContext.cpp", |
667 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp", | 668 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp", |
668 "tools/gpu/gl/debug/DebugGLTestContext.cpp", | 669 "tools/gpu/gl/debug/DebugGLTestContext.cpp", |
669 "tools/gpu/gl/debug/GrBufferObj.cpp", | 670 "tools/gpu/gl/debug/GrBufferObj.cpp", |
670 "tools/gpu/gl/debug/GrFrameBufferObj.cpp", | 671 "tools/gpu/gl/debug/GrFrameBufferObj.cpp", |
671 "tools/gpu/gl/debug/GrProgramObj.cpp", | 672 "tools/gpu/gl/debug/GrProgramObj.cpp", |
672 "tools/gpu/gl/debug/GrShaderObj.cpp", | 673 "tools/gpu/gl/debug/GrShaderObj.cpp", |
673 "tools/gpu/gl/debug/GrTextureObj.cpp", | 674 "tools/gpu/gl/debug/GrTextureObj.cpp", |
674 "tools/gpu/gl/debug/GrTextureUnitObj.cpp", | 675 "tools/gpu/gl/debug/GrTextureUnitObj.cpp", |
675 "tools/gpu/gl/null/NullGLTestContext.cpp", | 676 "tools/gpu/gl/null/NullGLTestContext.cpp", |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
981 ":gpu_tool_utils", | 982 ":gpu_tool_utils", |
982 ":skia", | 983 ":skia", |
983 ":tool_utils", | 984 ":tool_utils", |
984 "//third_party/jsoncpp", | 985 "//third_party/jsoncpp", |
985 "//third_party/libmicrohttpd", | 986 "//third_party/libmicrohttpd", |
986 "//third_party/libpng", | 987 "//third_party/libpng", |
987 ] | 988 ] |
988 testonly = true | 989 testonly = true |
989 } | 990 } |
990 } | 991 } |
OLD | NEW |