| 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 | 7 # GYP version: mojo.gyp:mojo_application_manager |
| 8 component("application_manager") { | 8 component("application_manager") { |
| 9 output_name = "mojo_application_manager" | 9 output_name = "mojo_application_manager" |
| 10 sources = [ | 10 sources = [ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "application_manager_unittest.cc", | 44 "application_manager_unittest.cc", |
| 45 "background_shell_application_loader_unittest.cc", | 45 "background_shell_application_loader_unittest.cc", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 deps = [ | 48 deps = [ |
| 49 ":application_manager", | 49 ":application_manager", |
| 50 ":test_bindings", | 50 ":test_bindings", |
| 51 "//base", | 51 "//base", |
| 52 "//mojo/application", | 52 "//mojo/application", |
| 53 "//mojo/common", | 53 "//mojo/common", |
| 54 "//mojo/common/test:run_all_unittests", | 54 "//mojo/edk/test:run_all_unittests", |
| 55 "//mojo/environment:chromium", | 55 "//mojo/environment:chromium", |
| 56 "//mojo/public/cpp/bindings", | 56 "//mojo/public/cpp/bindings", |
| 57 "//testing/gtest", | 57 "//testing/gtest", |
| 58 "//url", | 58 "//url", |
| 59 ] | 59 ] |
| 60 } | 60 } |
| 61 | 61 |
| 62 mojom("test_bindings") { | 62 mojom("test_bindings") { |
| 63 sources = [ "test.mojom" ] | 63 sources = [ "test.mojom" ] |
| 64 } | 64 } |
| OLD | NEW |