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

Side by Side Diff: BUILD.gn

Issue 770333005: Implement the `RegExp.prototype.flags` getter (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Move to separate harmony-regexp.js file Created 6 years 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
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/harmony-classes.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Because standalone V8 builds are not supported, assume this is part of a 5 # Because standalone V8 builds are not supported, assume this is part of a
6 # Chromium build. 6 # Chromium build.
7 import("//build/module_args/v8.gni") 7 import("//build/module_args/v8.gni")
8 8
9 # TODO(jochen): These will need to be user-settable to support standalone V8 9 # TODO(jochen): These will need to be user-settable to support standalone V8
10 # builds. 10 # builds.
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 235
236 sources = [ 236 sources = [
237 "src/macros.py", 237 "src/macros.py",
238 "src/proxy.js", 238 "src/proxy.js",
239 "src/generator.js", 239 "src/generator.js",
240 "src/harmony-string.js", 240 "src/harmony-string.js",
241 "src/harmony-array.js", 241 "src/harmony-array.js",
242 "src/harmony-typedarray.js", 242 "src/harmony-typedarray.js",
243 "src/harmony-classes.js", 243 "src/harmony-classes.js",
244 "src/harmony-tostring.js", 244 "src/harmony-tostring.js",
245 "src/harmony-templates.js" 245 "src/harmony-templates.js",
246 "src/harmony-regexp.js"
246 ] 247 ]
247 248
248 outputs = [ 249 outputs = [
249 "$target_gen_dir/experimental-libraries.cc" 250 "$target_gen_dir/experimental-libraries.cc"
250 ] 251 ]
251 252
252 args = [ 253 args = [
253 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir), 254 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir),
254 "EXPERIMENTAL", 255 "EXPERIMENTAL",
255 ] + rebase_path(sources, root_build_dir) 256 ] + rebase_path(sources, root_build_dir)
(...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 deps = [ 1452 deps = [
1452 ":v8_base", 1453 ":v8_base",
1453 ":v8_nosnapshot", 1454 ":v8_nosnapshot",
1454 ] 1455 ]
1455 } 1456 }
1456 1457
1457 direct_dependent_configs = [ ":external_config" ] 1458 direct_dependent_configs = [ ":external_config" ]
1458 } 1459 }
1459 1460
1460 } 1461 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/harmony-classes.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698