| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 '../../tools/generate-trig-table.py', | 231 '../../tools/generate-trig-table.py', |
| 232 '<@(_outputs)', | 232 '<@(_outputs)', |
| 233 ], | 233 ], |
| 234 }, | 234 }, |
| 235 ] | 235 ] |
| 236 }, | 236 }, |
| 237 { | 237 { |
| 238 'target_name': 'v8_base', | 238 'target_name': 'v8_base', |
| 239 'type': 'static_library', | 239 'type': 'static_library', |
| 240 'dependencies': [ | 240 'dependencies': [ |
| 241 'v8_libbase.<(v8_target_arch)', | 241 'v8_libbase', |
| 242 ], | 242 ], |
| 243 'variables': { | 243 'variables': { |
| 244 'optimize': 'max', | 244 'optimize': 'max', |
| 245 }, | 245 }, |
| 246 'include_dirs+': [ | 246 'include_dirs+': [ |
| 247 '../..', | 247 '../..', |
| 248 ], | 248 ], |
| 249 'sources': [ ### gcmole(all) ### | 249 'sources': [ ### gcmole(all) ### |
| 250 '../../src/accessors.cc', | 250 '../../src/accessors.cc', |
| 251 '../../src/accessors.h', | 251 '../../src/accessors.h', |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1049 ['OS=="win"', { | 1049 ['OS=="win"', { |
| 1050 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], | 1050 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], |
| 1051 }, { | 1051 }, { |
| 1052 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], | 1052 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], |
| 1053 }], | 1053 }], |
| 1054 ], | 1054 ], |
| 1055 }], | 1055 }], |
| 1056 ], | 1056 ], |
| 1057 }, | 1057 }, |
| 1058 { | 1058 { |
| 1059 'target_name': 'v8_libbase.<(v8_target_arch)', | 1059 'target_name': 'v8_libbase', |
| 1060 'type': 'static_library', | 1060 'type': 'static_library', |
| 1061 'variables': { | 1061 'variables': { |
| 1062 'optimize': 'max', | 1062 'optimize': 'max', |
| 1063 }, | 1063 }, |
| 1064 'include_dirs+': [ | 1064 'include_dirs+': [ |
| 1065 '../..', | 1065 '../..', |
| 1066 ], | 1066 ], |
| 1067 'sources': [ | 1067 'sources': [ |
| 1068 '../../src/base/atomicops.h', | 1068 '../../src/base/atomicops.h', |
| 1069 '../../src/base/atomicops_internals_arm64_gcc.h', | 1069 '../../src/base/atomicops_internals_arm64_gcc.h', |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1240 }], | 1240 }], |
| 1241 ['v8_compress_startup_data=="bz2"', { | 1241 ['v8_compress_startup_data=="bz2"', { |
| 1242 'libraries': [ | 1242 'libraries': [ |
| 1243 '-lbz2', | 1243 '-lbz2', |
| 1244 ] | 1244 ] |
| 1245 }], | 1245 }], |
| 1246 ], | 1246 ], |
| 1247 }, | 1247 }, |
| 1248 ], | 1248 ], |
| 1249 } | 1249 } |
| OLD | NEW |