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

Side by Side Diff: mojo/mojo_services.gyp

Issue 1737933002: mojo leveldb: Get profile and leveldb connected to DOMStorageContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gyp-ify all the tracing stuff. Created 4 years, 10 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'network_service_bindings_mojom', 8 'target_name': 'network_service_bindings_mojom',
9 'type': 'none', 9 'type': 'none',
10 'variables': { 10 'variables': {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'type': 'static_library', 55 'type': 'static_library',
56 'dependencies': [ 56 'dependencies': [
57 'network_service_bindings_lib', 57 'network_service_bindings_lib',
58 ], 58 ],
59 'sources': [ 59 'sources': [
60 'converters/network/network_type_converters.cc', 60 'converters/network/network_type_converters.cc',
61 'converters/network/network_type_converters.h', 61 'converters/network/network_type_converters.h',
62 ], 62 ],
63 }, 63 },
64 { 64 {
65 'target_name': 'tracing_service_bindings_mojom',
66 'type': 'none',
67 'variables': {
68 'mojom_files': [
69 'services/tracing/public/interfaces/tracing.mojom',
70 ],
71 'mojom_include_path': '<(DEPTH)/mojo/services',
72 },
73 'includes': [
74 'mojom_bindings_generator_explicit.gypi',
75 ],
76 },
77 {
78 # GN version: //mojo/services/tracing/public/interfaces
79 'target_name': 'tracing_service_bindings_lib',
80 'type': 'static_library',
81 'dependencies': [
82 'tracing_service_bindings_mojom',
83 ],
84 },
85 {
86 'target_name': 'tracing_service',
87 'type': 'static_library',
88 'dependencies': [
89 'tracing_service_bindings_lib',
90 ],
91 'sources': [
92 'services/tracing/trace_data_sink.cc',
93 'services/tracing/trace_data_sink.h',
94 'services/tracing/trace_recorder_impl.cc',
95 'services/tracing/trace_recorder_impl.h',
96 'services/tracing/tracing_app.cc',
97 'services/tracing/tracing_app.h',
98 ]
99 },
100 {
101 'target_name': 'tracing_service_lib',
102 'type': 'static_library',
103 'dependencies': [
104 'tracing_service_bindings_lib',
105 ],
106 'sources': [
107 'services/tracing/public/cpp/switches.cc',
108 'services/tracing/public/cpp/switches.h',
109 'services/tracing/public/cpp/tracing_impl.cc',
110 'services/tracing/public/cpp/tracing_impl.h',
111 'services/tracing/public/cpp/trace_provider_impl.cc',
112 'services/tracing/public/cpp/trace_provider_impl.h',
113 ],
114 },
115 {
65 'target_name': 'updater_bindings_mojom', 116 'target_name': 'updater_bindings_mojom',
66 'type': 'none', 117 'type': 'none',
67 'variables': { 118 'variables': {
68 'mojom_files': [ 119 'mojom_files': [
69 'services/updater/updater.mojom', 120 'services/updater/updater.mojom',
70 ], 121 ],
71 'mojom_include_path': '<(DEPTH)/mojo/services', 122 'mojom_include_path': '<(DEPTH)/mojo/services',
72 }, 123 },
73 'includes': [ 124 'includes': [
74 'mojom_bindings_generator_explicit.gypi', 125 'mojom_bindings_generator_explicit.gypi',
75 ], 126 ],
76 }, 127 },
77 { 128 {
78 # GN version: //mojo/services/updater 129 # GN version: //mojo/services/updater
79 'target_name': 'updater_bindings_lib', 130 'target_name': 'updater_bindings_lib',
80 'type': 'static_library', 131 'type': 'static_library',
81 'dependencies': [ 132 'dependencies': [
82 'updater_bindings_mojom', 133 'updater_bindings_mojom',
83 ], 134 ],
84 }, 135 },
85 ], 136 ],
86 } 137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698