| 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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 'shell/storage.cc', | 495 'shell/storage.cc', |
| 496 'shell/storage.h', | 496 'shell/storage.h', |
| 497 'shell/switches.cc', | 497 'shell/switches.cc', |
| 498 'shell/switches.h', | 498 'shell/switches.h', |
| 499 'shell/task_runners.cc', | 499 'shell/task_runners.cc', |
| 500 'shell/task_runners.h', | 500 'shell/task_runners.h', |
| 501 'shell/test_child_process.cc', | 501 'shell/test_child_process.cc', |
| 502 'shell/test_child_process.h', | 502 'shell/test_child_process.h', |
| 503 'shell/url_request_context_getter.cc', | 503 'shell/url_request_context_getter.cc', |
| 504 'shell/url_request_context_getter.h', | 504 'shell/url_request_context_getter.h', |
| 505 'shell/view_manager_loader.cc', |
| 506 'shell/view_manager_loader.h', |
| 505 ], | 507 ], |
| 506 'conditions': [ | 508 'conditions': [ |
| 507 ['OS=="linux"', { | 509 ['OS=="linux"', { |
| 508 'dependencies': [ | 510 'dependencies': [ |
| 509 '../build/linux/system.gyp:dbus', | 511 '../build/linux/system.gyp:dbus', |
| 510 '../dbus/dbus.gyp:dbus', | 512 '../dbus/dbus.gyp:dbus', |
| 511 ], | 513 ], |
| 512 }], | 514 }], |
| 513 ['use_aura==1', { | 515 ['use_aura==1', { |
| 514 'dependencies': [ | 516 'dependencies': [ |
| 515 # These are only necessary as long as we hard code use of ViewManage
r. | 517 # These are only necessary as long as we hard code use of ViewManage
r. |
| 516 '../skia/skia.gyp:skia', | 518 '../skia/skia.gyp:skia', |
| 517 'mojo_shell_client', | 519 'mojo_shell_client', |
| 518 'mojo_view_manager', | 520 'mojo_view_manager', |
| 519 ], | 521 ], |
| 522 }, { # use_aura==0 |
| 523 'sources!': [ |
| 524 'shell/view_manager_loader.cc', |
| 525 'shell/view_manager_loader.h', |
| 526 ], |
| 520 }], | 527 }], |
| 521 ], | 528 ], |
| 522 }, | 529 }, |
| 523 { | 530 { |
| 524 'target_name': 'mojo_shell_test_support', | 531 'target_name': 'mojo_shell_test_support', |
| 525 'type': 'static_library', | 532 'type': 'static_library', |
| 526 'dependencies': [ | 533 'dependencies': [ |
| 527 '../base/base.gyp:base', | 534 '../base/base.gyp:base', |
| 528 '../base/base.gyp:base_static', | 535 '../base/base.gyp:base_static', |
| 529 '../url/url.gyp:url_lib', | 536 '../url/url.gyp:url_lib', |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 'aura/screen_mojo.cc', | 865 'aura/screen_mojo.cc', |
| 859 'aura/screen_mojo.h', | 866 'aura/screen_mojo.h', |
| 860 'aura/window_tree_host_mojo.cc', | 867 'aura/window_tree_host_mojo.cc', |
| 861 'aura/window_tree_host_mojo.h', | 868 'aura/window_tree_host_mojo.h', |
| 862 ], | 869 ], |
| 863 }, | 870 }, |
| 864 ], | 871 ], |
| 865 }], | 872 }], |
| 866 ], | 873 ], |
| 867 } | 874 } |
| OLD | NEW |