| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 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 # Common gypi for unit tests. | 5 # Common gypi for unit tests. |
| 6 { | 6 { |
| 7 'include_dirs': [ | 7 'include_dirs': [ |
| 8 '../src/codec', | 8 '../src/codec', |
| 9 '../src/core', | 9 '../src/core', |
| 10 '../src/effects', | 10 '../src/effects', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 'skia_lib.gyp:skia_lib', | 28 'skia_lib.gyp:skia_lib', |
| 29 'tools.gyp:picture_utils', | 29 'tools.gyp:picture_utils', |
| 30 'tools.gyp:resources', | 30 'tools.gyp:resources', |
| 31 'tools.gyp:sk_tool_utils', | 31 'tools.gyp:sk_tool_utils', |
| 32 ], | 32 ], |
| 33 'conditions': [ | 33 'conditions': [ |
| 34 [ 'skia_os == "android"', | 34 [ 'skia_os == "android"', |
| 35 { | 35 { |
| 36 'include_dirs': [ '../src/ports', ], | 36 'include_dirs': [ '../src/ports', ], |
| 37 }, { | 37 }, { |
| 38 'sources!': [ '../tests/FontConfigParser.cpp', ], | 38 'sources!': [ '../tests/FontMgrAndroidParserTest.cpp', ], |
| 39 } | 39 } |
| 40 ], | 40 ], |
| 41 [ 'skia_android_framework == 1', { | 41 [ 'skia_android_framework == 1', { |
| 42 'libraries': [ | 42 'libraries': [ |
| 43 '-ldl', | 43 '-ldl', |
| 44 ], | 44 ], |
| 45 }], | 45 }], |
| 46 ], | 46 ], |
| 47 'sources': [ | 47 'sources': [ |
| 48 '../tests/Test.h', | 48 '../tests/Test.h', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 60 '../tests/SkpSkGrTest.cpp', | 60 '../tests/SkpSkGrTest.cpp', |
| 61 '../tests/skia_test.cpp', | 61 '../tests/skia_test.cpp', |
| 62 '../tests/PathOpsAngleIdeas.cpp', | 62 '../tests/PathOpsAngleIdeas.cpp', |
| 63 '../tests/PathOpsBattles.cpp', | 63 '../tests/PathOpsBattles.cpp', |
| 64 '../tests/PathOpsCubicLineIntersectionIdeas.cpp', | 64 '../tests/PathOpsCubicLineIntersectionIdeas.cpp', |
| 65 '../tests/PathOpsDebug.cpp', | 65 '../tests/PathOpsDebug.cpp', |
| 66 '../tests/PathOpsOpLoopThreadedTest.cpp', | 66 '../tests/PathOpsOpLoopThreadedTest.cpp', |
| 67 '../tests/PathOpsSkpClipTest.cpp', | 67 '../tests/PathOpsSkpClipTest.cpp', |
| 68 ], | 68 ], |
| 69 } | 69 } |
| OLD | NEW |