| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "message_loop_ref.h", | 43 "message_loop_ref.h", |
| 44 "names.h", | 44 "names.h", |
| 45 "shell.h", | 45 "shell.h", |
| 46 "shell_client.h", | 46 "shell_client.h", |
| 47 "shell_connection.h", | 47 "shell_connection.h", |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 deps = [ | 50 deps = [ |
| 51 "//base", | 51 "//base", |
| 52 "//base:i18n", | 52 "//base:i18n", |
| 53 "//mojo/message_pump", |
| 53 ] | 54 ] |
| 54 | 55 |
| 55 public_deps = [ | 56 public_deps = [ |
| 56 "//mojo/public/cpp/bindings", | 57 "//mojo/public/cpp/bindings", |
| 57 "//mojo/public/cpp/system", | 58 "//mojo/public/cpp/system", |
| 58 "//mojo/shell/public/interfaces", | 59 "//mojo/shell/public/interfaces", |
| 59 "//url", | 60 "//url", |
| 60 ] | 61 ] |
| 61 } | 62 } |
| 62 | 63 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "//mojo/logging", | 111 "//mojo/logging", |
| 111 "//mojo/public/cpp/bindings", | 112 "//mojo/public/cpp/bindings", |
| 112 "//mojo/public/cpp/environment", | 113 "//mojo/public/cpp/environment", |
| 113 "//mojo/public/cpp/system", | 114 "//mojo/public/cpp/system", |
| 114 "//mojo/shell/background:lib", | 115 "//mojo/shell/background:lib", |
| 115 "//mojo/shell/public/interfaces:interfaces_cpp_sources", | 116 "//mojo/shell/public/interfaces:interfaces_cpp_sources", |
| 116 ] | 117 ] |
| 117 | 118 |
| 118 data_deps = [] | 119 data_deps = [] |
| 119 } | 120 } |
| OLD | NEW |