| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |