| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 { | 296 { |
| 297 'target_name': 'v8_base.<(v8_target_arch)', | 297 'target_name': 'v8_base.<(v8_target_arch)', |
| 298 'type': 'static_library', | 298 'type': 'static_library', |
| 299 'conditions': [ | 299 'conditions': [ |
| 300 ['want_separate_host_toolset==1', { | 300 ['want_separate_host_toolset==1', { |
| 301 'toolsets': ['host', 'target'], | 301 'toolsets': ['host', 'target'], |
| 302 'dependencies': ['generated-lexer#host'], | 302 'dependencies': ['generated-lexer#host'], |
| 303 }, { | 303 }, { |
| 304 'toolsets': ['target'], | 304 'toolsets': ['target'], |
| 305 'dependencies': ['generated-lexer'], | 305 'dependencies': ['generated-lexer'], |
| 306 }], | 306 }] |
| 307 ], |
| 307 'variables': { | 308 'variables': { |
| 308 'optimize': 'max', | 309 'optimize': 'max', |
| 309 }, | 310 }, |
| 310 'include_dirs+': [ | 311 'include_dirs+': [ |
| 311 '../../src', | 312 '../../src', |
| 312 '../../include', | 313 '../../include', |
| 313 ], | 314 ], |
| 314 'sources': [ ### gcmole(all) ### | 315 'sources': [ ### gcmole(all) ### |
| 315 '../../src/accessors.cc', | 316 '../../src/accessors.cc', |
| 316 '../../src/accessors.h', | 317 '../../src/accessors.h', |
| (...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1178 }], | 1179 }], |
| 1179 ['v8_compress_startup_data=="bz2"', { | 1180 ['v8_compress_startup_data=="bz2"', { |
| 1180 'libraries': [ | 1181 'libraries': [ |
| 1181 '-lbz2', | 1182 '-lbz2', |
| 1182 ] | 1183 ] |
| 1183 }], | 1184 }], |
| 1184 ], | 1185 ], |
| 1185 }, | 1186 }, |
| 1186 ], | 1187 ], |
| 1187 } | 1188 } |
| OLD | NEW |