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

Side by Side Diff: BUILD.gn

Issue 988893003: Implement tracing interface for v8 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add a Unittest for trace-event Created 5 years, 9 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 | include/v8-tracing.h » ('j') | include/v8-tracing.h » ('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 932 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 "src/string-search.cc", 943 "src/string-search.cc",
944 "src/string-search.h", 944 "src/string-search.h",
945 "src/string-stream.cc", 945 "src/string-stream.cc",
946 "src/string-stream.h", 946 "src/string-stream.h",
947 "src/strings-storage.cc", 947 "src/strings-storage.cc",
948 "src/strings-storage.h", 948 "src/strings-storage.h",
949 "src/strtod.cc", 949 "src/strtod.cc",
950 "src/strtod.h", 950 "src/strtod.h",
951 "src/token.cc", 951 "src/token.cc",
952 "src/token.h", 952 "src/token.h",
953 "src/tracing/event-tracer.cc",
954 "src/tracing/trace-event.h",
953 "src/transitions-inl.h", 955 "src/transitions-inl.h",
954 "src/transitions.cc", 956 "src/transitions.cc",
955 "src/transitions.h", 957 "src/transitions.h",
956 "src/type-feedback-vector-inl.h", 958 "src/type-feedback-vector-inl.h",
957 "src/type-feedback-vector.cc", 959 "src/type-feedback-vector.cc",
958 "src/type-feedback-vector.h", 960 "src/type-feedback-vector.h",
959 "src/type-info.cc", 961 "src/type-info.cc",
960 "src/type-info.h", 962 "src/type-info.h",
961 "src/types-inl.h", 963 "src/types-inl.h",
962 "src/types.cc", 964 "src/types.cc",
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
1557 sources += [ 1559 sources += [
1558 "src/d8-debug.cc", 1560 "src/d8-debug.cc",
1559 "$target_gen_dir/d8-js.cc", 1561 "$target_gen_dir/d8-js.cc",
1560 ] 1562 ]
1561 } 1563 }
1562 if (v8_enable_i18n_support) { 1564 if (v8_enable_i18n_support) {
1563 deps += [ "//third_party/icu" ] 1565 deps += [ "//third_party/icu" ]
1564 } 1566 }
1565 } 1567 }
1566 } 1568 }
OLDNEW
« no previous file with comments | « no previous file | include/v8-tracing.h » ('j') | include/v8-tracing.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698