| 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 'builtin_in_cc_file': 'builtin_in.cc', | 7 'builtin_in_cc_file': 'builtin_in.cc', |
| 8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', | 8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', |
| 9 'snapshot_in_cc_file': 'snapshot_in.cc', | 9 'snapshot_in_cc_file': 'snapshot_in.cc', |
| 10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin', | 10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin', |
| 11 'snapshot_cc_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.cc', | 11 'snapshot_cc_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.cc', |
| 12 'cygwin_dir': '../../third_party/cygwin', | 12 'cygwin_dir': '../../third_party/cygwin', |
| 13 }, | 13 }, |
| 14 'targets': [ | 14 'targets': [ |
| 15 { | 15 { |
| 16 'target_name': 'generate_builtin_cc_file', | 16 'target_name': 'generate_builtin_cc_file', |
| 17 'type': 'none', | 17 'type': 'none', |
| 18 'conditions': [ | 18 'conditions': [ |
| 19 ['OS=="win"', { | 19 ['OS=="win"', { |
| 20 'msvs_cygwin_dirs': ['<(cygwin_dir)'], | 20 'msvs_cygwin_dirs': ['<(cygwin_dir)'], |
| 21 }], | 21 }], |
| 22 ], | 22 ], |
| 23 'includes': [ | 23 'includes': [ |
| 24 'builtin_sources.gypi', | 24 'builtin_sources.gypi', |
| 25 '../platform/platform_sources.gypi', | 25 '../platform/platform_headers.gypi', |
| 26 ], | 26 ], |
| 27 'sources/': [ | 27 'sources/': [ |
| 28 ['exclude', '\\.(cc|h)$'], | 28 ['exclude', '\\.(cc|h)$'], |
| 29 ], | 29 ], |
| 30 'actions': [ | 30 'actions': [ |
| 31 { | 31 { |
| 32 'action_name': 'generate_builtin_cc', | 32 'action_name': 'generate_builtin_cc', |
| 33 'inputs': [ | 33 'inputs': [ |
| 34 '../tools/create_string_literal.py', | 34 '../tools/create_string_literal.py', |
| 35 '<(builtin_in_cc_file)', | 35 '<(builtin_in_cc_file)', |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 'conditions': [ | 241 'conditions': [ |
| 242 ['OS=="win"', { | 242 ['OS=="win"', { |
| 243 'link_settings': { | 243 'link_settings': { |
| 244 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], | 244 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], |
| 245 }, | 245 }, |
| 246 }], | 246 }], |
| 247 ], | 247 ], |
| 248 }, | 248 }, |
| 249 ], | 249 ], |
| 250 } | 250 } |
| OLD | NEW |