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:*', | 84 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
| 85 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
| 86 ], |
| 87 }], |
| 88 ['OS=="win" and v8_enable_i18n_support==1', { |
| 89 'dependencies': [ |
| 90 '<(DEPTH)/third_party/icu/icu.gyp:icudata', |
85 ], | 91 ], |
86 }], | 92 }], |
87 ], | 93 ], |
88 }, | 94 }, |
89 { | 95 { |
90 'target_name': 'd8_js2c', | 96 'target_name': 'd8_js2c', |
91 'type': 'none', | 97 'type': 'none', |
92 'variables': { | 98 'variables': { |
93 'js_files': [ | 99 'js_files': [ |
94 'd8.js', | 100 'd8.js', |
(...skipping 23 matching lines...) Expand all Loading... |
118 '<@(_outputs)', | 124 '<@(_outputs)', |
119 'D8', | 125 'D8', |
120 'off', # compress startup data | 126 'off', # compress startup data |
121 '<@(js_files)' | 127 '<@(js_files)' |
122 ], | 128 ], |
123 }, | 129 }, |
124 ], | 130 ], |
125 } | 131 } |
126 ], | 132 ], |
127 } | 133 } |
OLD | NEW |