| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 # dependency however the Android toolchain requires libv8_base.a | 52 # dependency however the Android toolchain requires libv8_base.a |
| 53 # to appear before libv8_snapshot.a so it's listed explicitly. | 53 # to appear before libv8_snapshot.a so it's listed explicitly. |
| 54 'dependencies': [ | 54 'dependencies': [ |
| 55 'v8_base.<(v8_target_arch)', | 55 'v8_base.<(v8_target_arch)', |
| 56 'v8_nosnapshot.<(v8_target_arch)', | 56 'v8_nosnapshot.<(v8_target_arch)', |
| 57 ], | 57 ], |
| 58 }], | 58 }], |
| 59 ['component=="shared_library"', { | 59 ['component=="shared_library"', { |
| 60 'type': '<(component)', | 60 'type': '<(component)', |
| 61 'sources': [ | 61 'sources': [ |
| 62 '../../src/defaults.cc', | |
| 63 # Note: on non-Windows we still build this file so that gyp | 62 # Note: on non-Windows we still build this file so that gyp |
| 64 # has some sources to link into the component. | 63 # has some sources to link into the component. |
| 65 '../../src/v8dll-main.cc', | 64 '../../src/v8dll-main.cc', |
| 66 ], | 65 ], |
| 67 'defines': [ | 66 'defines': [ |
| 68 'V8_SHARED', | 67 'V8_SHARED', |
| 69 'BUILDING_V8_SHARED', | 68 'BUILDING_V8_SHARED', |
| 70 ], | 69 ], |
| 71 'direct_dependent_settings': { | 70 'direct_dependent_settings': { |
| 72 'defines': [ | 71 'defines': [ |
| (...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ], | 857 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ], |
| 859 }, | 858 }, |
| 860 }], | 859 }], |
| 861 ], | 860 ], |
| 862 }], | 861 }], |
| 863 ['component=="shared_library"', { | 862 ['component=="shared_library"', { |
| 864 'defines': [ | 863 'defines': [ |
| 865 'BUILDING_V8_SHARED', | 864 'BUILDING_V8_SHARED', |
| 866 'V8_SHARED', | 865 'V8_SHARED', |
| 867 ], | 866 ], |
| 868 }, { | |
| 869 'sources': [ | |
| 870 '../../src/defaults.cc', | |
| 871 ], | |
| 872 }], | 867 }], |
| 873 ['v8_postmortem_support=="true"', { | 868 ['v8_postmortem_support=="true"', { |
| 874 'sources': [ | 869 'sources': [ |
| 875 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', | 870 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', |
| 876 ] | 871 ] |
| 877 }], | 872 }], |
| 878 ['v8_enable_i18n_support==1', { | 873 ['v8_enable_i18n_support==1', { |
| 879 'dependencies': [ | 874 'dependencies': [ |
| 880 '<(icu_gyp_path):icui18n', | 875 '<(icu_gyp_path):icui18n', |
| 881 '<(icu_gyp_path):icuuc', | 876 '<(icu_gyp_path):icuuc', |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1063 }], | 1058 }], |
| 1064 ['v8_compress_startup_data=="bz2"', { | 1059 ['v8_compress_startup_data=="bz2"', { |
| 1065 'libraries': [ | 1060 'libraries': [ |
| 1066 '-lbz2', | 1061 '-lbz2', |
| 1067 ] | 1062 ] |
| 1068 }], | 1063 }], |
| 1069 ], | 1064 ], |
| 1070 }, | 1065 }, |
| 1071 ], | 1066 ], |
| 1072 } | 1067 } |
| OLD | NEW |