| 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", | |
| 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 "background_shell_application_loader.cc", | 15 "background_shell_application_loader.cc", |
| 17 "background_shell_application_loader.h", | 16 "background_shell_application_loader.h", |
| 18 ] | 17 ] |
| 19 | 18 |
| 20 defines = [ | 19 defines = [ |
| 21 "MOJO_APPLICATION_MANAGER_IMPLEMENTATION", | 20 "MOJO_APPLICATION_MANAGER_IMPLEMENTATION", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 "//mojo/environment:chromium", | 53 "//mojo/environment:chromium", |
| 55 "//mojo/public/cpp/bindings", | 54 "//mojo/public/cpp/bindings", |
| 56 "//testing/gtest", | 55 "//testing/gtest", |
| 57 "//url", | 56 "//url", |
| 58 ] | 57 ] |
| 59 } | 58 } |
| 60 | 59 |
| 61 mojom("test_bindings") { | 60 mojom("test_bindings") { |
| 62 sources = [ "test.mojom" ] | 61 sources = [ "test.mojom" ] |
| 63 } | 62 } |
| OLD | NEW |