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

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

Issue 751303003: Move tracing_impl code to mojo/common (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 | mojo/common/tracing.mojom » ('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("//mojo/public/tools/bindings/mojom.gni")
6
5 # GYP version: mojo/mojo_base.gyp:mojo_common_lib 7 # GYP version: mojo/mojo_base.gyp:mojo_common_lib
6 component("common") { 8 component("common") {
7 output_name = "mojo_common_lib" 9 output_name = "mojo_common_lib"
8 10
9 sources = [ 11 sources = [
10 "common_type_converters.cc", 12 "common_type_converters.cc",
11 "common_type_converters.h", 13 "common_type_converters.h",
12 "data_pipe_utils.cc", 14 "data_pipe_utils.cc",
13 "data_pipe_utils.h", 15 "data_pipe_utils.h",
14 "handle_watcher.cc", 16 "handle_watcher.cc",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 "//mojo/edk/test:run_all_unittests", 52 "//mojo/edk/test:run_all_unittests",
51 "//mojo/edk/test:test_support", 53 "//mojo/edk/test:test_support",
52 "//mojo/environment:chromium", 54 "//mojo/environment:chromium",
53 "//mojo/public/cpp/bindings", 55 "//mojo/public/cpp/bindings",
54 "//mojo/public/cpp/system", 56 "//mojo/public/cpp/system",
55 "//mojo/public/cpp/test_support:test_utils", 57 "//mojo/public/cpp/test_support:test_utils",
56 "//testing/gtest", 58 "//testing/gtest",
57 "//url", 59 "//url",
58 ] 60 ]
59 } 61 }
62
63 source_set("tracing_impl") {
64 sources = [
65 "tracing_impl.cc",
66 "tracing_impl.h",
67 ]
68
69 deps = [
70 ":tracing_bindings",
71 "//base",
72 "//mojo/public/cpp/bindings",
73 ]
74 }
75
76 mojom("tracing_bindings") {
77 sources = [ "tracing.mojom" ]
78 }
OLDNEW
« no previous file with comments | « no previous file | mojo/common/tracing.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698