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

Side by Side Diff: gyp/flags.gyp

Issue 12632015: Make gm use SkFlags. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: update command_line Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 # GYP file to build flag parser
2 #
3 {
4 'targets': [
5 {
6 'target_name': 'flags',
7 'type': 'static_library',
8 'sources': [
9 '../tools/SkFlags.h',
10 '../tools/SkFlags.cpp',
11 ],
12 'dependencies': [
13 'skia_base_libs.gyp:skia_base_libs',
14 'core.gyp:core',
15 ],
16 'direct_dependent_settings': {
17 'include_dirs': [
18 '../tools/',
19 ],
20 }
21 },
22 ],
23 }
24
25 # Local Variables:
26 # tab-width:2
27 # indent-tabs-mode:nil
28 # End:
29 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698