| 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 = [ |
| 11 "application_loader.cc", | 11 "application_loader.cc", |
| 12 "application_loader.h", | 12 "application_loader.h", |
| 13 "application_manager.cc", | 13 "application_manager.cc", |
| 14 "application_manager.h", | 14 "application_manager.h", |
| 15 "application_manager_export.h", | 15 "application_manager_export.h", |
| 16 "shell_impl.cc", |
| 17 "shell_impl.h", |
| 16 ] | 18 ] |
| 17 | 19 |
| 18 defines = [ "MOJO_APPLICATION_MANAGER_IMPLEMENTATION" ] | 20 defines = [ "MOJO_APPLICATION_MANAGER_IMPLEMENTATION" ] |
| 19 | 21 |
| 20 public_deps = [ | 22 public_deps = [ |
| 21 "//base", | 23 "//base", |
| 22 "//mojo/common", | 24 "//mojo/common", |
| 23 "//mojo/public/interfaces/application:application", | 25 "//mojo/public/interfaces/application:application", |
| 24 "//mojo/services/network/public/interfaces", | 26 "//mojo/services/network/public/interfaces", |
| 25 "//url", | 27 "//url", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 53 "//testing/gtest", | 55 "//testing/gtest", |
| 54 "//url", | 56 "//url", |
| 55 ] | 57 ] |
| 56 } | 58 } |
| 57 | 59 |
| 58 mojom("test_bindings") { | 60 mojom("test_bindings") { |
| 59 sources = [ | 61 sources = [ |
| 60 "test.mojom", | 62 "test.mojom", |
| 61 ] | 63 ] |
| 62 } | 64 } |
| OLD | NEW |