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

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

Issue 9189003: Move assert.h/assert.cc from runtime/vm to runtime/platform (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Check for correct rebase Created 8 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/builtin.h » ('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 '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
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 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/builtin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698