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

Side by Side Diff: runtime/bin/bin.gypi

Issue 1151743002: Decrease Dart binary size by 1.7MB (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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 | runtime/bin/vmservice/resources.dart » ('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 (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)',
8 8
9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc',
10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc',
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 '<(PRODUCT_DIR)/observatory/deployed/web/index.html', 499 '<(PRODUCT_DIR)/observatory/deployed/web/index.html',
500 '<(PRODUCT_DIR)/observatory/deployed/web/index.html.polymer.bootstra p.dart.js', 500 '<(PRODUCT_DIR)/observatory/deployed/web/index.html.polymer.bootstra p.dart.js',
501 '<@(_sources)', 501 '<@(_sources)',
502 ], 502 ],
503 'outputs': [ 503 'outputs': [
504 '<(resources_cc_file)', 504 '<(resources_cc_file)',
505 ], 505 ],
506 'action': [ 506 'action': [
507 'python', 507 'python',
508 'tools/create_resources.py', 508 'tools/create_resources.py',
509 '--compress',
509 '--output', '<(resources_cc_file)', 510 '--output', '<(resources_cc_file)',
510 '--outer_namespace', 'dart', 511 '--outer_namespace', 'dart',
511 '--inner_namespace', 'bin', 512 '--inner_namespace', 'bin',
512 '--table_name', 'service_bin', 513 '--table_name', 'service_bin',
513 '--root_prefix', 'bin/', 514 '--root_prefix', 'bin/',
514 '--client_root', '<(PRODUCT_DIR)/observatory/deployed/web/', 515 '--client_root', '<(PRODUCT_DIR)/observatory/deployed/web/',
515 '<@(_sources)' 516 '<@(_sources)'
516 ], 517 ],
517 'message': 'Generating ''<(resources_cc_file)'' file.' 518 'message': 'Generating ''<(resources_cc_file)'' file.'
518 }, 519 },
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 }], 809 }],
809 ['OS=="linux"', { 810 ['OS=="linux"', {
810 'cflags': [ 811 'cflags': [
811 '-fPIC', 812 '-fPIC',
812 ], 813 ],
813 }], 814 }],
814 ], 815 ],
815 }, 816 },
816 ], 817 ],
817 } 818 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice/resources.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698