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

Side by Side Diff: gyp/flags.gyp

Issue 1265443002: add -Iinclude/private anywhere we have -Isrc/core (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/effects.gyp ('k') | gyp/gpu.gyp » ('j') | 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 # GYP file to build flag parser 5 # GYP file to build flag parser
6 # 6 #
7 { 7 {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'flags', 10 'target_name': 'flags',
11 'type': 'static_library', 11 'type': 'static_library',
12 'include_dirs': [ '../src/core', ], 12 'include_dirs': [
13 '../include/private',
14 '../src/core',
15 ],
13 'sources': [ 16 'sources': [
14 '../tools/flags/SkCommandLineFlags.cpp', 17 '../tools/flags/SkCommandLineFlags.cpp',
15 '../tools/flags/SkCommandLineFlags.h', 18 '../tools/flags/SkCommandLineFlags.h',
16 ], 19 ],
17 'dependencies': [ 20 'dependencies': [
18 'skia_lib.gyp:skia_lib', 21 'skia_lib.gyp:skia_lib',
19 ], 22 ],
20 'direct_dependent_settings': { 23 'direct_dependent_settings': {
21 'include_dirs': [ 24 'include_dirs': [
22 '../tools/flags', 25 '../tools/flags',
(...skipping 12 matching lines...) Expand all
35 'flags.gyp:flags', 38 'flags.gyp:flags',
36 ], 39 ],
37 'direct_dependent_settings': { 40 'direct_dependent_settings': {
38 'include_dirs': [ 41 'include_dirs': [
39 '../tools/flags', 42 '../tools/flags',
40 ], 43 ],
41 } 44 }
42 }, 45 },
43 ], 46 ],
44 } 47 }
OLDNEW
« no previous file with comments | « gyp/effects.gyp ('k') | gyp/gpu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698