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

Side by Side Diff: components/tracing/BUILD.gn

Issue 2869073002: Adding PE TimeStamp to chrome trace to ease retrieving debug information (Closed)
Patch Set: dcheng comments Created 3 years, 6 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 | « base/win/BUILD.gn ('k') | components/tracing/common/process_metrics_memory_dump_provider.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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//third_party/protobuf/proto_library.gni") 6 import("//third_party/protobuf/proto_library.gni")
7 7
8 component("tracing") { 8 component("tracing") {
9 sources = [ 9 sources = [
10 "child/child_trace_message_filter.cc", 10 "child/child_trace_message_filter.cc",
(...skipping 19 matching lines...) Expand all
30 "tracing_export.h", 30 "tracing_export.h",
31 ] 31 ]
32 32
33 defines = [ "TRACING_IMPLEMENTATION" ] 33 defines = [ "TRACING_IMPLEMENTATION" ]
34 34
35 deps = [ 35 deps = [
36 "//base", 36 "//base",
37 "//ipc", 37 "//ipc",
38 ] 38 ]
39 39
40 if (is_win) {
41 deps += [ "//base/win:pe_image" ]
42 }
43
40 public_deps = [ 44 public_deps = [
41 "//components/tracing/proto:protos", 45 "//components/tracing/proto:protos",
42 ] 46 ]
43 47
44 if (is_nacl) { 48 if (is_nacl) {
45 sources -= [ "common/process_metrics_memory_dump_provider.cc" ] 49 sources -= [ "common/process_metrics_memory_dump_provider.cc" ]
46 } 50 }
47 } 51 }
48 52
49 component("startup_tracing") { 53 component("startup_tracing") {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 "//testing/scripts/common.py", 142 "//testing/scripts/common.py",
139 "//testing/xvfb.py", 143 "//testing/xvfb.py",
140 "//testing/scripts/run_gtest_perf_test.py", 144 "//testing/scripts/run_gtest_perf_test.py",
141 "//tools/perf/generate_legacy_perf_dashboard_json.py", 145 "//tools/perf/generate_legacy_perf_dashboard_json.py",
142 ] 146 ]
143 147
144 if (is_android) { 148 if (is_android) {
145 deps += [ "//testing/android/native_test:native_test_native_code" ] 149 deps += [ "//testing/android/native_test:native_test_native_code" ]
146 } 150 }
147 } 151 }
OLDNEW
« no previous file with comments | « base/win/BUILD.gn ('k') | components/tracing/common/process_metrics_memory_dump_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698