| 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 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 # GYP version: mojo.gyp:mojo_application_manager | |
| 8 component("application_manager") { | 7 component("application_manager") { |
| 9 output_name = "mojo_application_manager" | 8 output_name = "mojo_application_manager" |
| 10 sources = [ | 9 sources = [ |
| 11 "application_loader.cc", | 10 "application_loader.cc", |
| 12 "application_loader.h", | 11 "application_loader.h", |
| 13 "application_manager.cc", | 12 "application_manager.cc", |
| 14 "application_manager.h", | 13 "application_manager.h", |
| 15 "application_manager_export.h", | 14 "application_manager_export.h", |
| 16 "shell_impl.cc", | 15 "shell_impl.cc", |
| 17 "shell_impl.h", | 16 "shell_impl.h", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 30 "//base/third_party/dynamic_annotations", | 29 "//base/third_party/dynamic_annotations", |
| 31 "//url", | 30 "//url", |
| 32 "//mojo/edk/system", | 31 "//mojo/edk/system", |
| 33 "//mojo/environment:chromium", | 32 "//mojo/environment:chromium", |
| 34 "//mojo/public/cpp/application", | 33 "//mojo/public/cpp/application", |
| 35 "//mojo/public/cpp/bindings", | 34 "//mojo/public/cpp/bindings", |
| 36 "//mojo/services/content_handler/public/interfaces", | 35 "//mojo/services/content_handler/public/interfaces", |
| 37 ] | 36 ] |
| 38 } | 37 } |
| 39 | 38 |
| 40 # GYP version: mojo.gyp:mojo_application_manager_unittests | |
| 41 test("mojo_application_manager_unittests") { | 39 test("mojo_application_manager_unittests") { |
| 42 sources = [ | 40 sources = [ |
| 43 "application_manager_unittest.cc", | 41 "application_manager_unittest.cc", |
| 44 ] | 42 ] |
| 45 | 43 |
| 46 deps = [ | 44 deps = [ |
| 47 ":application_manager", | 45 ":application_manager", |
| 48 ":test_bindings", | 46 ":test_bindings", |
| 49 "//base", | 47 "//base", |
| 50 "//mojo/application", | 48 "//mojo/application", |
| 51 "//mojo/common", | 49 "//mojo/common", |
| 52 "//mojo/edk/test:run_all_unittests", | 50 "//mojo/edk/test:run_all_unittests", |
| 53 "//mojo/environment:chromium", | 51 "//mojo/environment:chromium", |
| 54 "//mojo/public/cpp/bindings", | 52 "//mojo/public/cpp/bindings", |
| 55 "//testing/gtest", | 53 "//testing/gtest", |
| 56 "//url", | 54 "//url", |
| 57 ] | 55 ] |
| 58 } | 56 } |
| 59 | 57 |
| 60 mojom("test_bindings") { | 58 mojom("test_bindings") { |
| 61 sources = [ | 59 sources = [ |
| 62 "test.mojom", | 60 "test.mojom", |
| 63 ] | 61 ] |
| 64 } | 62 } |
| OLD | NEW |