Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: src/v8.gyp

Issue 2698813004: [SAB] Move Atomics builtins to C++ (Closed)
Patch Set: Clean up conversions Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 2264 matching lines...) Expand 10 before | Expand all | Expand 10 after
2275 'js/spread.js', 2275 'js/spread.js',
2276 'js/proxy.js', 2276 'js/proxy.js',
2277 'js/harmony-string-padding.js', 2277 'js/harmony-string-padding.js',
2278 'debug/mirrors.js', 2278 'debug/mirrors.js',
2279 'debug/debug.js', 2279 'debug/debug.js',
2280 'debug/liveedit.js', 2280 'debug/liveedit.js',
2281 ], 2281 ],
2282 'experimental_library_files': [ 2282 'experimental_library_files': [
2283 'js/macros.py', 2283 'js/macros.py',
2284 'messages.h', 2284 'messages.h',
2285 'js/harmony-atomics.js',
2286 ], 2285 ],
2287 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 2286 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
2288 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 2287 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
2289 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin', 2288 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin',
2290 'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/li braries-experimental-extras.bin', 2289 'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/li braries-experimental-extras.bin',
2291 'conditions': [ 2290 'conditions': [
2292 ['v8_enable_i18n_support==1', { 2291 ['v8_enable_i18n_support==1', {
2293 'library_files': ['js/i18n.js'], 2292 'library_files': ['js/i18n.js'],
2294 }], 2293 }],
2295 ], 2294 ],
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
2504 'conditions': [ 2503 'conditions': [
2505 ['want_separate_host_toolset_mkpeephole==1', { 2504 ['want_separate_host_toolset_mkpeephole==1', {
2506 'toolsets': ['host'], 2505 'toolsets': ['host'],
2507 }, { 2506 }, {
2508 'toolsets': ['target'], 2507 'toolsets': ['target'],
2509 }], 2508 }],
2510 ], 2509 ],
2511 }, 2510 },
2512 ], 2511 ],
2513 } 2512 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698