diff options
author | 2015-08-14 08:37:50 -0700 | |
---|---|---|
committer | 2015-08-14 08:37:50 -0700 | |
commit | 540e4888a58c2c82e0de83753d58509c5350c6c6 (patch) | |
tree | 7d8b9a2006bf2e22530ea5b149b1c2e2157e3f49 | |
parent | 820bffb8937f2a29acb67ab5a4add21febdf1bce (diff) |
Add include paths in gputest.gyp for use by additional gpu tests.
BUG=skia:
Review URL: https://codereview.chromium.org/1290553005
-rw-r--r-- | gyp/gpu.gyp | 5 | ||||
-rw-r--r-- | gyp/gputest.gyp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gyp/gpu.gyp b/gyp/gpu.gyp index bfd9d384dc..51e7e3275f 100644 --- a/gyp/gpu.gyp +++ b/gyp/gpu.gyp @@ -112,7 +112,10 @@ [ 'skia_gpu_extra_dependency_path', { 'dependencies' : [ '<(skia_gpu_extra_dependency_path):*', - ] + ], + 'export_dependent_settings': [ + '<(skia_gpu_extra_dependency_path):*', + ], }], [ 'skia_chrome_utils', { 'sources': [ diff --git a/gyp/gputest.gyp b/gyp/gputest.gyp index 6100363f46..36db43403f 100644 --- a/gyp/gputest.gyp +++ b/gyp/gputest.gyp @@ -18,10 +18,12 @@ '../include/utils', '../src/core', '../src/gpu', + '../../src/gpu', ], 'direct_dependent_settings': { 'include_dirs': [ '../src/gpu', + '../../src/gpu', ], }, 'sources': [ |