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

Side by Side Diff: BUILD.gn

Issue 2840543002: [d8] implement console for d8. (Closed)
Patch Set: no stress Created 3 years, 8 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
« no previous file with comments | « no previous file | src/d8.cc » ('j') | no next file with comments »
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 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 2703 matching lines...) Expand 10 before | Expand all | Expand 10 after
2714 ":v8_maybe_snapshot", 2714 ":v8_maybe_snapshot",
2715 ] 2715 ]
2716 2716
2717 public_configs = [ ":external_config" ] 2717 public_configs = [ ":external_config" ]
2718 } 2718 }
2719 } 2719 }
2720 2720
2721 v8_executable("d8") { 2721 v8_executable("d8") {
2722 sources = [ 2722 sources = [
2723 "$target_gen_dir/d8-js.cc", 2723 "$target_gen_dir/d8-js.cc",
2724 "src/d8-console.cc",
2725 "src/d8-console.h",
2724 "src/d8.cc", 2726 "src/d8.cc",
2725 "src/d8.h", 2727 "src/d8.h",
2726 ] 2728 ]
2727 2729
2728 configs = [ 2730 configs = [
2729 # Note: don't use :internal_config here because this target will get 2731 # Note: don't use :internal_config here because this target will get
2730 # the :external_config applied to it by virtue of depending on :v8, and 2732 # the :external_config applied to it by virtue of depending on :v8, and
2731 # you can't have both applied to the same target. 2733 # you can't have both applied to the same target.
2732 ":internal_config_base", 2734 ":internal_config_base",
2733 ] 2735 ]
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
3197 ] 3199 ]
3198 3200
3199 configs = [ 3201 configs = [
3200 ":external_config", 3202 ":external_config",
3201 ":internal_config_base", 3203 ":internal_config_base",
3202 ] 3204 ]
3203 } 3205 }
3204 3206
3205 v8_fuzzer("wasm_compile_fuzzer") { 3207 v8_fuzzer("wasm_compile_fuzzer") {
3206 } 3208 }
OLDNEW
« no previous file with comments | « no previous file | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698