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

Side by Side Diff: gyp/flags.gyp

Issue 389653004: share dm and command flags (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 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
OLDNEW
1 # GYP file to build flag parser 1 # GYP file to build flag parser
2 # 2 #
3 { 3 {
4 'targets': [ 4 'targets': [
5 { 5 {
6 'target_name': 'flags', 6 'target_name': 'flags',
7 'type': 'static_library', 7 'type': 'static_library',
8 'sources': [ 8 'sources': [
9 '../tools/flags/SkCommonFlags.cpp',
scroggo 2014/07/11 21:12:14 I'm not sure these belong in the same library. Wha
caryclark 2014/07/14 12:24:46 My thought is the target can #include "SkCommandLi
10 '../tools/flags/SkCommonFlags.h',
9 '../tools/flags/SkCommandLineFlags.cpp', 11 '../tools/flags/SkCommandLineFlags.cpp',
10 '../tools/flags/SkCommandLineFlags.h', 12 '../tools/flags/SkCommandLineFlags.h',
11 ], 13 ],
12 'dependencies': [ 14 'dependencies': [
13 'skia_lib.gyp:skia_lib', 15 'skia_lib.gyp:skia_lib',
14 ], 16 ],
15 'direct_dependent_settings': { 17 'direct_dependent_settings': {
16 'include_dirs': [ 18 'include_dirs': [
17 '../tools/flags', 19 '../tools/flags',
18 ], 20 ],
19 } 21 }
20 }, 22 },
21 ], 23 ],
22 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698