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

Side by Side Diff: gyp/tools.gyp

Issue 1895143002: experimental/fiddle -> tools/fiddle (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 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 | « experimental/fiddle/parse-fiddle-output ('k') | tools/fiddle/.gitignore » ('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 various tools. 5 # GYP file to build various tools.
6 # 6 #
7 # To build on Linux: 7 # To build on Linux:
8 # ./gyp_skia tools.gyp && make tools 8 # ./gyp_skia tools.gyp && make tools
9 # 9 #
10 { 10 {
(...skipping 16 matching lines...) Expand all
27 'lua_pictures', 27 'lua_pictures',
28 'pinspect', 28 'pinspect',
29 'skdiff', 29 'skdiff',
30 'skhello', 30 'skhello',
31 'skpinfo', 31 'skpinfo',
32 'skpmaker', 32 'skpmaker',
33 'test_public_includes', 33 'test_public_includes',
34 'whitelist_typefaces', 34 'whitelist_typefaces',
35 ], 35 ],
36 'conditions': [ 36 'conditions': [
37 ['skia_os == "linux"', { 'dependencies': [ 'fiddle_build_test' ] } ],
37 ['skia_shared_lib', 38 ['skia_shared_lib',
38 { 39 {
39 'dependencies': [ 40 'dependencies': [
40 'sklua', # This can only be built if skia is built as a shared lib rary 41 'sklua', # This can only be built if skia is built as a shared lib rary
41 ], 42 ],
42 }, 43 },
43 ], 44 ],
44 [ 'skia_os == "android"', 45 [ 'skia_os == "android"',
45 { 46 {
46 'dependencies': [ 47 'dependencies': [
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 ], 582 ],
582 'dependencies': [ 583 'dependencies': [
583 'flags.gyp:flags', 584 'flags.gyp:flags',
584 'skia_lib.gyp:skia_lib', 585 'skia_lib.gyp:skia_lib',
585 'resources', 586 'resources',
586 ], 587 ],
587 }, 588 },
588 ], 589 ],
589 }, 590 },
590 ], 591 ],
592 ['skia_os == "linux"',
593 {
594 'targets': [
595 {
596 'target_name': 'fiddle_build_test',
597 'type': 'executable',
598 'sources': [
599 '../tools/fiddle/draw.cpp',
600 '../tools/fiddle/fiddle_main.cpp',
601 '../tools/fiddle/fiddle_main.h',
602 ],
603 'dependencies': [
604 'skia_lib.gyp:skia_lib',
605 'pdf.gyp:pdf',
606 ],
607 'defines': [ 'FIDDLE_BUILD_TEST' ],
608 'link_settings': { 'libraries': [ '-lOSMesa' ], },
609 },
610 ],
611 },
612 ],
591 ], 613 ],
592 } 614 }
OLDNEW
« no previous file with comments | « experimental/fiddle/parse-fiddle-output ('k') | tools/fiddle/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698