Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/mips.gni") | 7 import("//build/config/mips.gni") |
| 8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 714 ] | 714 ] |
| 715 | 715 |
| 716 configs = [ ":internal_config" ] | 716 configs = [ ":internal_config" ] |
| 717 } | 717 } |
| 718 } | 718 } |
| 719 | 719 |
| 720 v8_source_set("v8_base") { | 720 v8_source_set("v8_base") { |
| 721 visibility = [ ":*" ] # Only targets in this file can depend on this. | 721 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 722 | 722 |
| 723 sources = [ | 723 sources = [ |
| 724 # TODO(fmeawad): This needs to be updated to support standalone V8 builds. | 724 "//base/trace_event/common/trace_event_common.h", |
|
Michael Achenbach
2016/05/24 12:17:53
// refers to the project root. Both chromium and v
Nico
2016/08/03 19:17:31
Projects outside of src.git must not depend on bas
| |
| 725 "../base/trace_event/common/trace_event_common.h", | |
| 726 "include/v8-debug.h", | 725 "include/v8-debug.h", |
| 727 "include/v8-experimental.h", | 726 "include/v8-experimental.h", |
| 728 "include/v8-platform.h", | 727 "include/v8-platform.h", |
| 729 "include/v8-profiler.h", | 728 "include/v8-profiler.h", |
| 730 "include/v8-testing.h", | 729 "include/v8-testing.h", |
| 731 "include/v8-util.h", | 730 "include/v8-util.h", |
| 732 "include/v8-version.h", | 731 "include/v8-version.h", |
| 733 "include/v8.h", | 732 "include/v8.h", |
| 734 "include/v8config.h", | 733 "include/v8config.h", |
| 735 "src/accessors.cc", | 734 "src/accessors.cc", |
| (...skipping 1443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2179 sources = [ | 2178 sources = [ |
| 2180 "test/fuzzer/wasm-asmjs.cc", | 2179 "test/fuzzer/wasm-asmjs.cc", |
| 2181 ] | 2180 ] |
| 2182 | 2181 |
| 2183 deps = [ | 2182 deps = [ |
| 2184 ":fuzzer_support", | 2183 ":fuzzer_support", |
| 2185 ] | 2184 ] |
| 2186 | 2185 |
| 2187 configs = [ ":internal_config" ] | 2186 configs = [ ":internal_config" ] |
| 2188 } | 2187 } |
| OLD | NEW |