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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 'mojo_variables.gypi', | 10 'mojo_variables.gypi', |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 '../testing/gtest.gyp:gtest', | 265 '../testing/gtest.gyp:gtest', |
266 'mojo_application_base', | 266 'mojo_application_base', |
267 'mojo_edk.gyp:mojo_run_all_unittests', | 267 'mojo_edk.gyp:mojo_run_all_unittests', |
268 'mojo_public.gyp:mojo_utility', | 268 'mojo_public.gyp:mojo_utility', |
269 'mojo_public.gyp:mojo_environment_standalone', | 269 'mojo_public.gyp:mojo_environment_standalone', |
270 ], | 270 ], |
271 'sources': [ | 271 'sources': [ |
272 'shell/public/cpp/tests/interface_registry_unittest.cc', | 272 'shell/public/cpp/tests/interface_registry_unittest.cc', |
273 ], | 273 ], |
274 }, | 274 }, |
| 275 { |
| 276 # Technically, these should be in the mojo_services.gyp, but this causes |
| 277 # a cycle since the ios generator can't have gyp files refer to each |
| 278 # other, even if the targets don't form a cycle. |
| 279 # |
| 280 # GN version: //mojo/services/tracing:lib |
| 281 'target_name': 'tracing_service', |
| 282 'type': 'static_library', |
| 283 'dependencies': [ |
| 284 'mojo_services.gyp:tracing_service_bindings_lib', |
| 285 'mojo_base.gyp:mojo_application_bindings', |
| 286 'mojo_edk.gyp:mojo_system_impl', |
| 287 ], |
| 288 'sources': [ |
| 289 'services/tracing/trace_data_sink.cc', |
| 290 'services/tracing/trace_data_sink.h', |
| 291 'services/tracing/trace_recorder_impl.cc', |
| 292 'services/tracing/trace_recorder_impl.h', |
| 293 'services/tracing/tracing_app.cc', |
| 294 'services/tracing/tracing_app.h', |
| 295 ], |
| 296 }, |
| 297 { |
| 298 # GN version: //mojo/services/public/cpp |
| 299 'target_name': 'tracing_service_lib', |
| 300 'type': 'static_library', |
| 301 'dependencies': [ |
| 302 'mojo_services.gyp:tracing_service_bindings_lib', |
| 303 'mojo_base.gyp:mojo_application_bindings', |
| 304 'mojo_edk.gyp:mojo_system_impl', |
| 305 ], |
| 306 'sources': [ |
| 307 'services/tracing/public/cpp/switches.cc', |
| 308 'services/tracing/public/cpp/switches.h', |
| 309 'services/tracing/public/cpp/tracing_impl.cc', |
| 310 'services/tracing/public/cpp/tracing_impl.h', |
| 311 'services/tracing/public/cpp/trace_provider_impl.cc', |
| 312 'services/tracing/public/cpp/trace_provider_impl.h', |
| 313 ], |
| 314 }, |
275 ], | 315 ], |
276 'conditions': [ | 316 'conditions': [ |
277 ['OS=="android"', { | 317 ['OS=="android"', { |
278 'targets': [ | 318 'targets': [ |
279 { | 319 { |
280 'target_name': 'mojo_jni_headers', | 320 'target_name': 'mojo_jni_headers', |
281 'type': 'none', | 321 'type': 'none', |
282 'dependencies': [ | 322 'dependencies': [ |
283 'mojo_java_set_jni_headers', | 323 'mojo_java_set_jni_headers', |
284 ], | 324 ], |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 '../build/isolate.gypi', | 384 '../build/isolate.gypi', |
345 ], | 385 ], |
346 'sources': [ | 386 'sources': [ |
347 'mojo_common_unittests.isolate', | 387 'mojo_common_unittests.isolate', |
348 ], | 388 ], |
349 }, | 389 }, |
350 ], | 390 ], |
351 }], | 391 }], |
352 ] | 392 ] |
353 } | 393 } |
OLD | NEW |