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("//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 Loading... | |
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 Loading... | |
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 } |
OLD | NEW |