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

Side by Side Diff: gyp/tools.gyp

Issue 391423002: Generate makefile for bench_pictures. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Make bench_pictures depend on skia. 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
« no previous file with comments | « no previous file | platform_tools/android/bin/gyp_to_android.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build various tools. 1 # GYP file to build various tools.
2 # 2 #
3 # To build on Linux: 3 # To build on Linux:
4 # ./gyp_skia tools.gyp && make tools 4 # ./gyp_skia tools.gyp && make tools
5 # 5 #
6 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 ], 393 ],
394 'dependencies': [ 394 'dependencies': [
395 'timer', 395 'timer',
396 'crash_handler', 396 'crash_handler',
397 'flags.gyp:flags', 397 'flags.gyp:flags',
398 'jsoncpp.gyp:jsoncpp', 398 'jsoncpp.gyp:jsoncpp',
399 'skia_lib.gyp:skia_lib', 399 'skia_lib.gyp:skia_lib',
400 'tools.gyp:picture_renderer', 400 'tools.gyp:picture_renderer',
401 'tools.gyp:picture_utils', 401 'tools.gyp:picture_utils',
402 ], 402 ],
403 'conditions': [
404 ['skia_android_framework == 1', {
405 'libraries': [ '-lskia' ],
scroggo 2014/07/16 20:51:01 mtklein pointed out live that we should abstract t
406 }],
407 ],
403 }, 408 },
404 { 409 {
405 'target_name': 'bench_record', 410 'target_name': 'bench_record',
406 'type': 'executable', 411 'type': 'executable',
407 'sources': [ 412 'sources': [
408 '../tools/bench_record.cpp', 413 '../tools/bench_record.cpp',
409 '../tools/LazyDecodeBitmap.cpp', 414 '../tools/LazyDecodeBitmap.cpp',
410 ], 415 ],
411 'include_dirs': [ 416 'include_dirs': [
412 '../src/core/', 417 '../src/core/',
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 'type': 'executable', 718 'type': 'executable',
714 'sources': [ 719 'sources': [
715 '../tools/win_lcid.cpp', 720 '../tools/win_lcid.cpp',
716 ], 721 ],
717 }, 722 },
718 ], 723 ],
719 }, 724 },
720 ], 725 ],
721 ], 726 ],
722 } 727 }
OLDNEW
« no previous file with comments | « no previous file | platform_tools/android/bin/gyp_to_android.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698