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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 }, | 368 }, |
369 { | 369 { |
370 'target_name': 'mojo_environment_chromium', | 370 'target_name': 'mojo_environment_chromium', |
371 'type': 'static_library', | 371 'type': 'static_library', |
372 'dependencies': [ | 372 'dependencies': [ |
373 'mojo_common_lib', | 373 'mojo_common_lib', |
374 'mojo_environment_chromium_impl', | 374 'mojo_environment_chromium_impl', |
375 ], | 375 ], |
376 'sources': [ | 376 'sources': [ |
377 'environment/default_async_waiter.cc', | 377 'environment/default_async_waiter.cc', |
378 'environment/buffer_tls.cc', | |
379 'environment/environment.cc', | 378 'environment/environment.cc', |
380 ], | 379 ], |
381 'include_dirs': [ | 380 'include_dirs': [ |
382 '..', | 381 '..', |
383 ], | 382 ], |
384 'export_dependent_settings': [ | 383 'export_dependent_settings': [ |
385 'mojo_environment_chromium_impl', | 384 'mojo_environment_chromium_impl', |
386 ], | 385 ], |
387 }, | 386 }, |
388 { | 387 { |
389 'target_name': 'mojo_environment_chromium_impl', | 388 'target_name': 'mojo_environment_chromium_impl', |
390 'type': '<(component)', | 389 'type': '<(component)', |
391 'defines': [ | 390 'defines': [ |
392 'MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION', | 391 'MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION', |
393 ], | 392 ], |
394 'dependencies': [ | 393 'dependencies': [ |
395 '../base/base.gyp:base', | 394 '../base/base.gyp:base', |
396 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 395 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
397 'mojo_common_lib' | 396 'mojo_common_lib' |
398 ], | 397 ], |
399 'sources': [ | 398 'sources': [ |
400 'environment/default_async_waiter_impl.cc', | 399 'environment/default_async_waiter_impl.cc', |
401 'environment/default_async_waiter_impl.h', | 400 'environment/default_async_waiter_impl.h', |
402 'environment/buffer_tls_impl.cc', | |
403 'environment/buffer_tls_impl.h', | |
404 ], | 401 ], |
405 'include_dirs': [ | 402 'include_dirs': [ |
406 '..', | 403 '..', |
407 ], | 404 ], |
408 }, | 405 }, |
409 { | 406 { |
410 'target_name': 'mojo_service_manager', | 407 'target_name': 'mojo_service_manager', |
411 'type': '<(component)', | 408 'type': '<(component)', |
412 'defines': [ | 409 'defines': [ |
413 'MOJO_SERVICE_MANAGER_IMPLEMENTATION', | 410 'MOJO_SERVICE_MANAGER_IMPLEMENTATION', |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
874 'aura/screen_mojo.cc', | 871 'aura/screen_mojo.cc', |
875 'aura/screen_mojo.h', | 872 'aura/screen_mojo.h', |
876 'aura/window_tree_host_mojo.cc', | 873 'aura/window_tree_host_mojo.cc', |
877 'aura/window_tree_host_mojo.h', | 874 'aura/window_tree_host_mojo.h', |
878 ], | 875 ], |
879 }, | 876 }, |
880 ], | 877 ], |
881 }], | 878 }], |
882 ], | 879 ], |
883 } | 880 } |
OLD | NEW |