| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'targets': [{ | 6 'targets': [{ |
| 7 'target_name': 'mojo_shell_lib', | 7 'target_name': 'mojo_shell_lib', |
| 8 'type': 'static_library', | 8 'type': 'static_library', |
| 9 'sources': [ | 9 'sources': [ |
| 10 'common/mojo_scheme_register.cc', | 10 'common/mojo_scheme_register.cc', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 ], | 34 ], |
| 35 'dependencies': [ | 35 'dependencies': [ |
| 36 '<(DEPTH)/base/base.gyp:base', | 36 '<(DEPTH)/base/base.gyp:base', |
| 37 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 37 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
| 38 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', | 38 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', |
| 39 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', | 39 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', |
| 40 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', | 40 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', |
| 41 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', | 41 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', |
| 42 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', | 42 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', |
| 43 '<(DEPTH)/url/url.gyp:url_lib', | 43 '<(DEPTH)/url/url.gyp:url_lib', |
| 44 '<(DEPTH)/net/net.gyp:net', |
| 44 ], | 45 ], |
| 45 }, { | 46 }, { |
| 46 'target_name': 'mojo_shell_unittests', | 47 'target_name': 'mojo_shell_unittests', |
| 47 'type': 'executable', | 48 'type': 'executable', |
| 48 'sources': [ | 49 'sources': [ |
| 49 'shell/tests/application_manager_unittest.cc', | 50 'shell/tests/application_manager_unittest.cc', |
| 50 'shell/tests/capability_filter_unittest.cc', | 51 'shell/tests/capability_filter_unittest.cc', |
| 51 ], | 52 ], |
| 52 'dependencies': [ | 53 'dependencies': [ |
| 53 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_lib', | 54 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_lib', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 69 'mojom_files': [ | 70 'mojom_files': [ |
| 70 'shell/tests/capability_filter_unittest.mojom', | 71 'shell/tests/capability_filter_unittest.mojom', |
| 71 'shell/tests/test.mojom', | 72 'shell/tests/test.mojom', |
| 72 ], | 73 ], |
| 73 }, | 74 }, |
| 74 'includes': [ | 75 'includes': [ |
| 75 'mojom_bindings_generator_explicit.gypi', | 76 'mojom_bindings_generator_explicit.gypi', |
| 76 ], | 77 ], |
| 77 }], | 78 }], |
| 78 } | 79 } |
| OLD | NEW |