OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'target_defaults': { | 6 'target_defaults': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
9 'defines': [ | 9 'defines': [ |
10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 }, | 387 }, |
388 { | 388 { |
389 'target_name': 'mojo_environment_chromium', | 389 'target_name': 'mojo_environment_chromium', |
390 'type': 'static_library', | 390 'type': 'static_library', |
391 'dependencies': [ | 391 'dependencies': [ |
392 'mojo_common_lib', | 392 'mojo_common_lib', |
393 'mojo_environment_chromium_impl', | 393 'mojo_environment_chromium_impl', |
394 ], | 394 ], |
395 'sources': [ | 395 'sources': [ |
396 'environment/default_async_waiter.cc', | 396 'environment/default_async_waiter.cc', |
| 397 'environment/default_logger.cc', |
397 'environment/environment.cc', | 398 'environment/environment.cc', |
398 ], | 399 ], |
399 'include_dirs': [ | 400 'include_dirs': [ |
400 '..', | 401 '..', |
401 ], | 402 ], |
402 'export_dependent_settings': [ | 403 'export_dependent_settings': [ |
403 'mojo_environment_chromium_impl', | 404 'mojo_environment_chromium_impl', |
404 ], | 405 ], |
405 }, | 406 }, |
406 { | 407 { |
407 'target_name': 'mojo_environment_chromium_impl', | 408 'target_name': 'mojo_environment_chromium_impl', |
408 'type': '<(component)', | 409 'type': '<(component)', |
409 'defines': [ | 410 'defines': [ |
410 'MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION', | 411 'MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION', |
411 ], | 412 ], |
412 'dependencies': [ | 413 'dependencies': [ |
413 '../base/base.gyp:base', | 414 '../base/base.gyp:base', |
414 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 415 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
415 'mojo_common_lib' | 416 'mojo_common_lib' |
416 ], | 417 ], |
417 'sources': [ | 418 'sources': [ |
418 'environment/default_async_waiter_impl.cc', | 419 'environment/default_async_waiter_impl.cc', |
419 'environment/default_async_waiter_impl.h', | 420 'environment/default_async_waiter_impl.h', |
| 421 'environment/default_logger_impl.cc', |
| 422 'environment/default_logger_impl.h', |
420 ], | 423 ], |
421 'include_dirs': [ | 424 'include_dirs': [ |
422 '..', | 425 '..', |
423 ], | 426 ], |
424 }, | 427 }, |
425 { | 428 { |
426 'target_name': 'mojo_service_manager', | 429 'target_name': 'mojo_service_manager', |
427 'type': '<(component)', | 430 'type': '<(component)', |
428 'defines': [ | 431 'defines': [ |
429 'MOJO_SERVICE_MANAGER_IMPLEMENTATION', | 432 'MOJO_SERVICE_MANAGER_IMPLEMENTATION', |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
934 'views/native_widget_view_manager.cc', | 937 'views/native_widget_view_manager.cc', |
935 'views/native_widget_view_manager.h', | 938 'views/native_widget_view_manager.h', |
936 'views/views_init.cc', | 939 'views/views_init.cc', |
937 'views/views_init.h', | 940 'views/views_init.h', |
938 ], | 941 ], |
939 }, | 942 }, |
940 ], | 943 ], |
941 }], | 944 }], |
942 ], | 945 ], |
943 } | 946 } |
OLD | NEW |