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

Unified Diff: mojo/mojo_base.gyp

Issue 1741953002: mojo: Sketch a profile application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't add a boolean to BrowserContext; allocate an object instead. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/browser/shell_browser_context.cc ('k') | mojo/mojo_services.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/mojo_base.gyp
diff --git a/mojo/mojo_base.gyp b/mojo/mojo_base.gyp
index 3beb38390f01673542372152e1f8a03b47f9bec1..50d882580045b2b345436bfefd5e88fb92dcff81 100644
--- a/mojo/mojo_base.gyp
+++ b/mojo/mojo_base.gyp
@@ -272,6 +272,46 @@
'shell/public/cpp/tests/interface_registry_unittest.cc',
],
},
+ {
+ # Technically, these should be in the mojo_services.gyp, but this causes
+ # a cycle since the ios generator can't have gyp files refer to each
+ # other, even if the targets don't form a cycle.
+ #
+ # GN version: //mojo/services/tracing:lib
+ 'target_name': 'tracing_service',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'mojo_services.gyp:tracing_service_bindings_lib',
+ 'mojo_base.gyp:mojo_application_bindings',
+ 'mojo_edk.gyp:mojo_system_impl',
+ ],
+ 'sources': [
+ 'services/tracing/trace_data_sink.cc',
+ 'services/tracing/trace_data_sink.h',
+ 'services/tracing/trace_recorder_impl.cc',
+ 'services/tracing/trace_recorder_impl.h',
+ 'services/tracing/tracing_app.cc',
+ 'services/tracing/tracing_app.h',
+ ],
+ },
+ {
+ # GN version: //mojo/services/public/cpp
+ 'target_name': 'tracing_service_lib',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'mojo_services.gyp:tracing_service_bindings_lib',
+ 'mojo_base.gyp:mojo_application_bindings',
+ 'mojo_edk.gyp:mojo_system_impl',
+ ],
+ 'sources': [
+ 'services/tracing/public/cpp/switches.cc',
+ 'services/tracing/public/cpp/switches.h',
+ 'services/tracing/public/cpp/tracing_impl.cc',
+ 'services/tracing/public/cpp/tracing_impl.h',
+ 'services/tracing/public/cpp/trace_provider_impl.cc',
+ 'services/tracing/public/cpp/trace_provider_impl.h',
+ ],
+ },
],
'conditions': [
['OS=="android"', {
« no previous file with comments | « content/shell/browser/shell_browser_context.cc ('k') | mojo/mojo_services.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698