| 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 18 matching lines...) Expand all Loading... |
| 29 'variables': { | 29 'variables': { |
| 30 'v8_code': 1, | 30 'v8_code': 1, |
| 31 'v8_enable_i18n_support%': 1, | 31 'v8_enable_i18n_support%': 1, |
| 32 'v8_toolset_for_shell%': 'target', | 32 'v8_toolset_for_shell%': 'target', |
| 33 }, | 33 }, |
| 34 'includes': ['../gypfiles/toolchain.gypi', '../gypfiles/features.gypi'], | 34 'includes': ['../gypfiles/toolchain.gypi', '../gypfiles/features.gypi'], |
| 35 'target_defaults': { | 35 'target_defaults': { |
| 36 'type': 'executable', | 36 'type': 'executable', |
| 37 'dependencies': [ | 37 'dependencies': [ |
| 38 '../src/v8.gyp:v8', | 38 '../src/v8.gyp:v8', |
| 39 '../src/v8.gyp:v8_libbase', | |
| 40 '../src/v8.gyp:v8_libplatform', | 39 '../src/v8.gyp:v8_libplatform', |
| 41 ], | 40 ], |
| 42 'include_dirs': [ | 41 'include_dirs': [ |
| 43 '..', | 42 '..', |
| 44 ], | 43 ], |
| 45 'conditions': [ | 44 'conditions': [ |
| 46 ['v8_enable_i18n_support==1', { | 45 ['v8_enable_i18n_support==1', { |
| 47 'dependencies': [ | 46 'dependencies': [ |
| 48 '<(icu_gyp_path):icui18n', | 47 '<(icu_gyp_path):icui18n', |
| 49 '<(icu_gyp_path):icuuc', | 48 '<(icu_gyp_path):icuuc', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 75 ], | 74 ], |
| 76 }, | 75 }, |
| 77 { | 76 { |
| 78 'target_name': 'process', | 77 'target_name': 'process', |
| 79 'sources': [ | 78 'sources': [ |
| 80 'process.cc', | 79 'process.cc', |
| 81 ], | 80 ], |
| 82 }, | 81 }, |
| 83 ], | 82 ], |
| 84 } | 83 } |
| OLD | NEW |