| OLD | NEW |
| 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, 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 | 3 # BSD-style license that can be found in the LICENSE |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables' : { | 6 'variables' : { |
| 7 'script_suffix%': '', | 7 'script_suffix%': '', |
| 8 }, | 8 }, |
| 9 'conditions' : [ | 9 'conditions' : [ |
| 10 ['OS=="win"', { | 10 ['OS=="win"', { |
| 11 'variables' : { | 11 'variables' : { |
| 12 'script_suffix': '.bat', | 12 'script_suffix': '.bat', |
| 13 }, | 13 }, |
| 14 }], | 14 }], |
| 15 ], | 15 ], |
| 16 'targets': [ | 16 'targets': [ |
| 17 { | 17 { |
| 18 'target_name': 'try_site', | 18 'target_name': 'try_site', |
| 19 'type': 'none', | 19 'type': 'none', |
| 20 'dependencies': [ | 20 'dependencies': [ |
| 21 '../../runtime/dart-runtime.gyp:dart', | 21 '../../runtime/dart-runtime.gyp:dart', |
| 22 '../../create_sdk.gyp:create_sdk_internal', | 22 '../../create_sdk.gyp:create_sdk_internal', |
| 23 ], | 23 ], |
| 24 'variables': { | 24 'variables': { |
| 25 'try_dart_static_files': [ | 25 'try_dart_static_files': [ |
| 26 'index.html', | 26 'index.html', |
| 27 'dartlang-style.css', | 27 'dartlang-style.css', |
| 28 'line_numbers.css', |
| 28 'iframe.html', | 29 'iframe.html', |
| 29 'iframe.js', | 30 'iframe.js', |
| 30 'dart-icon.png', # iOS icon. | 31 'dart-icon.png', # iOS icon. |
| 31 'dart-iphone5.png', # iPhone 5 splash screen. | 32 'dart-iphone5.png', # iPhone 5 splash screen. |
| 32 'dart-icon-196px.png', # Android icon. | 33 'dart-icon-196px.png', # Android icon. |
| 33 'try-dart-screenshot.png', # Google+ screen shot. | 34 'try-dart-screenshot.png', # Google+ screen shot. |
| 34 | 35 |
| 35 '../../third_party/font-awesome/font-awesome-4.0.3/' | 36 '../../third_party/font-awesome/font-awesome-4.0.3/' |
| 36 'fonts/fontawesome-webfont.woff', | 37 'fonts/fontawesome-webfont.woff', |
| 37 | 38 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 'files': [ | 122 'files': [ |
| 122 'app.yaml', | 123 'app.yaml', |
| 123 '<@(try_dart_static_files)', | 124 '<@(try_dart_static_files)', |
| 124 '<(SHARED_INTERMEDIATE_DIR)/nossl.appcache', | 125 '<(SHARED_INTERMEDIATE_DIR)/nossl.appcache', |
| 125 ], | 126 ], |
| 126 }, | 127 }, |
| 127 ], | 128 ], |
| 128 }, | 129 }, |
| 129 ], | 130 ], |
| 130 } | 131 } |
| OLD | NEW |