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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
6 | 6 |
7 component("tracing") { | 7 component("tracing") { |
8 sources = [ | 8 sources = [ |
9 "child/child_memory_dump_manager_delegate_impl.cc", | 9 "child/child_memory_dump_manager_delegate_impl.cc", |
10 "child/child_memory_dump_manager_delegate_impl.h", | 10 "child/child_memory_dump_manager_delegate_impl.h", |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 "test/example_proto/library.proto", | 66 "test/example_proto/library.proto", |
67 "test/example_proto/library_internals/galaxies.proto", | 67 "test/example_proto/library_internals/galaxies.proto", |
68 "test/example_proto/test_messages.proto", | 68 "test/example_proto/test_messages.proto", |
69 "test/example_proto/upper_import.proto", | 69 "test/example_proto/upper_import.proto", |
70 ] | 70 ] |
71 | 71 |
72 proto_in_dir = "test/example_proto" | 72 proto_in_dir = "test/example_proto" |
73 | 73 |
74 generator_plugin_label = "tools/proto_zero_plugin:proto_zero_plugin" | 74 generator_plugin_label = "tools/proto_zero_plugin:proto_zero_plugin" |
75 generator_plugin_suffix = ".pbzero" | 75 generator_plugin_suffix = ".pbzero" |
| 76 generator_plugin_options = "wrapper_namespace=pbzero" |
76 generate_cc = true | 77 generate_cc = true |
77 generate_python = false | 78 generate_python = false |
78 } | 79 } |
79 | 80 |
80 source_set("unit_tests") { | 81 source_set("unit_tests") { |
81 testonly = true | 82 testonly = true |
82 | 83 |
83 sources = [ | 84 sources = [ |
84 "child/child_trace_message_filter_unittest.cc", | 85 "child/child_trace_message_filter_unittest.cc", |
85 "common/graphics_memory_dump_provider_android_unittest.cc", | 86 "common/graphics_memory_dump_provider_android_unittest.cc", |
(...skipping 13 matching lines...) Expand all Loading... |
99 "//ipc", | 100 "//ipc", |
100 "//testing/gmock:gmock", | 101 "//testing/gmock:gmock", |
101 "//testing/gtest", | 102 "//testing/gtest", |
102 ] | 103 ] |
103 | 104 |
104 if (!is_android) { | 105 if (!is_android) { |
105 sources += [ "browser/trace_config_file_unittest.cc" ] | 106 sources += [ "browser/trace_config_file_unittest.cc" ] |
106 deps += [ ":startup_tracing" ] | 107 deps += [ ":startup_tracing" ] |
107 } | 108 } |
108 } | 109 } |
OLD | NEW |