| 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 # GYP version: mojo/mojo_base.gyp:mojo_application_base | 5 # GYP version: mojo/mojo_base.gyp:mojo_application_base |
| 6 source_set("cpp") { | 6 source_set("cpp") { |
| 7 public_deps = [ | 7 public_deps = [ |
| 8 ":init_commandline", | 8 ":init_commandline", |
| 9 ":sources", | 9 ":sources", |
| 10 ] | 10 ] |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "lib/interface_factory_binder.h", | 34 "lib/interface_factory_binder.h", |
| 35 "lib/interface_registry.cc", | 35 "lib/interface_registry.cc", |
| 36 "lib/shell_client.cc", | 36 "lib/shell_client.cc", |
| 37 "lib/shell_connection.cc", | 37 "lib/shell_connection.cc", |
| 38 "shell.h", | 38 "shell.h", |
| 39 "shell_client.h", | 39 "shell_client.h", |
| 40 "shell_connection.h", | 40 "shell_connection.h", |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 deps = [ | 43 deps = [ |
| 44 "//base", |
| 44 "//base:i18n", | 45 "//base:i18n", |
| 45 "//mojo/common", | |
| 46 "//mojo/environment:chromium", | |
| 47 "//mojo/message_pump", | 46 "//mojo/message_pump", |
| 48 ] | 47 ] |
| 49 | 48 |
| 50 public_deps = [ | 49 public_deps = [ |
| 51 "//base", | |
| 52 "//mojo/public/cpp/bindings", | 50 "//mojo/public/cpp/bindings", |
| 53 "//mojo/public/cpp/system", | 51 "//mojo/public/cpp/system", |
| 54 "//mojo/shell/public/interfaces", | 52 "//mojo/shell/public/interfaces", |
| 55 "//url", | 53 "//url", |
| 56 ] | 54 ] |
| 57 } | 55 } |
| 58 | 56 |
| 59 source_set("init_commandline") { | 57 source_set("init_commandline") { |
| 60 sources = [ | 58 sources = [ |
| 61 "lib/init_commandline.cc", | 59 "lib/init_commandline.cc", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 80 "//base/test:test_support", | 78 "//base/test:test_support", |
| 81 "//mojo/logging", | 79 "//mojo/logging", |
| 82 "//mojo/public/cpp/bindings", | 80 "//mojo/public/cpp/bindings", |
| 83 "//mojo/public/cpp/environment", | 81 "//mojo/public/cpp/environment", |
| 84 "//mojo/public/cpp/system", | 82 "//mojo/public/cpp/system", |
| 85 "//mojo/shell/public/interfaces:interfaces_cpp_sources", | 83 "//mojo/shell/public/interfaces:interfaces_cpp_sources", |
| 86 ] | 84 ] |
| 87 | 85 |
| 88 data_deps = [] | 86 data_deps = [] |
| 89 } | 87 } |
| OLD | NEW |