| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 }], | 74 }], |
| 75 ], | 75 ], |
| 76 }], | 76 }], |
| 77 ['v8_enable_vtunejit==1', { | 77 ['v8_enable_vtunejit==1', { |
| 78 'dependencies': [ | 78 'dependencies': [ |
| 79 '../src/third_party/vtune/v8vtune.gyp:v8_vtune', | 79 '../src/third_party/vtune/v8vtune.gyp:v8_vtune', |
| 80 ], | 80 ], |
| 81 }], | 81 }], |
| 82 ['v8_enable_i18n_support==1', { | 82 ['v8_enable_i18n_support==1', { |
| 83 'dependencies': [ | 83 'dependencies': [ |
| 84 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 84 '<(icu_gyp_path):icui18n', |
| 85 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 85 '<(icu_gyp_path):icuuc', |
| 86 ], | 86 ], |
| 87 }], | 87 }], |
| 88 ['OS=="win" and v8_enable_i18n_support==1', { | 88 ['OS=="win" and v8_enable_i18n_support==1', { |
| 89 'dependencies': [ | 89 'dependencies': [ |
| 90 '<(DEPTH)/third_party/icu/icu.gyp:icudata', | 90 '<(icu_gyp_path):icudata', |
| 91 ], | 91 ], |
| 92 }], | 92 }], |
| 93 ], | 93 ], |
| 94 }, | 94 }, |
| 95 { | 95 { |
| 96 'target_name': 'd8_js2c', | 96 'target_name': 'd8_js2c', |
| 97 'type': 'none', | 97 'type': 'none', |
| 98 'variables': { | 98 'variables': { |
| 99 'js_files': [ | 99 'js_files': [ |
| 100 'd8.js', | 100 'd8.js', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 124 '<@(_outputs)', | 124 '<@(_outputs)', |
| 125 'D8', | 125 'D8', |
| 126 'off', # compress startup data | 126 'off', # compress startup data |
| 127 '<@(js_files)' | 127 '<@(js_files)' |
| 128 ], | 128 ], |
| 129 }, | 129 }, |
| 130 ], | 130 ], |
| 131 } | 131 } |
| 132 ], | 132 ], |
| 133 } | 133 } |
| OLD | NEW |