Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Side by Side Diff: gyp/gputest.gyp

Issue 1290553005: Add include paths in gputest.gyp for use by additional gpu tests. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/gpu.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'skgputest', 8 'target_name': 'skgputest',
9 'product_name': 'skia_skgputest', 9 'product_name': 'skia_skgputest',
10 'type': 'static_library', 10 'type': 'static_library',
11 'standalone_static_library': 1, 11 'standalone_static_library': 1,
12 'dependencies': [ 12 'dependencies': [
13 'skia_lib.gyp:skia_lib', 13 'skia_lib.gyp:skia_lib',
14 ], 14 ],
15 'include_dirs': [ 15 'include_dirs': [
16 '../include/gpu', 16 '../include/gpu',
egdaniel 2015/08/14 15:25:59 I think technically we could also get rid of ../in
17 '../include/private', 17 '../include/private',
18 '../include/utils', 18 '../include/utils',
19 '../src/core', 19 '../src/core',
20 '../src/gpu', 20 '../src/gpu',
21 '../../src/gpu',
21 ], 22 ],
22 'direct_dependent_settings': { 23 'direct_dependent_settings': {
23 'include_dirs': [ 24 'include_dirs': [
24 '../src/gpu', 25 '../src/gpu',
26 '../../src/gpu',
25 ], 27 ],
26 }, 28 },
27 'sources': [ 29 'sources': [
28 '<(skia_src_path)/gpu/GrContextFactory.cpp', 30 '<(skia_src_path)/gpu/GrContextFactory.cpp',
29 '<(skia_src_path)/gpu/GrContextFactory.h', 31 '<(skia_src_path)/gpu/GrContextFactory.h',
30 '<(skia_src_path)/gpu/GrTest.cpp', 32 '<(skia_src_path)/gpu/GrTest.cpp',
31 '<(skia_src_path)/gpu/GrTest.h', 33 '<(skia_src_path)/gpu/GrTest.h',
32 ], 34 ],
33 }, 35 },
34 ], 36 ],
35 } 37 }
OLDNEW
« no previous file with comments | « gyp/gpu.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698