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

Side by Side Diff: mojo/common/BUILD.gn

Issue 1177853003: [Startup Tracing] Enable startup tracing from config file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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
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 6
7 group("common") { 7 group("common") {
8 deps = [ 8 deps = [
9 ":common_base", 9 ":common_base",
10 ":url_type_converters", 10 ":url_type_converters",
(...skipping 21 matching lines...) Expand all
32 "user_agent.h", 32 "user_agent.h",
33 "weak_binding_set.h", 33 "weak_binding_set.h",
34 "weak_interface_ptr_set.h", 34 "weak_interface_ptr_set.h",
35 ] 35 ]
36 36
37 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] 37 defines = [ "MOJO_COMMON_IMPLEMENTATION" ]
38 38
39 deps = [ 39 deps = [
40 "//base", 40 "//base",
41 "//base/third_party/dynamic_annotations", 41 "//base/third_party/dynamic_annotations",
42 "//components/tracing:startup_tracing",
sky 2015/06/18 22:18:16 This isn't actually using statup_tracing. It's the
Zhen Wang 2015/06/18 22:37:58 I was following the pattern in content/child/BUILD
sky 2015/06/18 23:43:08 Each step of the build should list targets it depe
Zhen Wang 2015/06/19 03:26:10 Done.
42 "//third_party/mojo/src/mojo/public/c/system:for_component", 43 "//third_party/mojo/src/mojo/public/c/system:for_component",
43 ] 44 ]
44 } 45 }
45 46
46 # GYP version: mojo/mojo_base.gyp:mojo_url_type_converters 47 # GYP version: mojo/mojo_base.gyp:mojo_url_type_converters
47 source_set("url_type_converters") { 48 source_set("url_type_converters") {
48 sources = [ 49 sources = [
49 "url_type_converters.cc", 50 "url_type_converters.cc",
50 "url_type_converters.h", 51 "url_type_converters.h",
51 ] 52 ]
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 ] 93 ]
93 94
94 deps = [ 95 deps = [
95 "//base", 96 "//base",
96 "//mojo/application/public/cpp", 97 "//mojo/application/public/cpp",
97 "//mojo/services/tracing:bindings", 98 "//mojo/services/tracing:bindings",
98 "//third_party/mojo/src/mojo/public/cpp/bindings", 99 "//third_party/mojo/src/mojo/public/cpp/bindings",
99 ] 100 ]
100 } 101 }
101 } 102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698