| 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 ":sources", | 8 ":sources", |
| 9 ] | 9 ] |
| 10 } | 10 } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 public_deps = [ | 44 public_deps = [ |
| 45 "//base", | 45 "//base", |
| 46 "//mojo/public/cpp/bindings", | 46 "//mojo/public/cpp/bindings", |
| 47 "//mojo/public/cpp/system", | 47 "//mojo/public/cpp/system", |
| 48 "//services/shell/public/interfaces", | 48 "//services/shell/public/interfaces", |
| 49 "//url", | 49 "//url", |
| 50 ] | 50 ] |
| 51 } | 51 } |
| 52 | 52 |
| 53 source_set("application_support") { | 53 if (!is_ios) { |
| 54 sources = [ | 54 source_set("application_support") { |
| 55 "lib/init_commandline.cc", | 55 sources = [ |
| 56 "lib/initialize_base_and_icu.cc", | 56 "lib/init_commandline.cc", |
| 57 ] | 57 "lib/initialize_base_and_icu.cc", |
| 58 ] |
| 58 | 59 |
| 59 deps = [ | 60 deps = [ |
| 60 "//base", | 61 "//base", |
| 61 "//base:i18n", | 62 "//base:i18n", |
| 62 "//mojo/public/c/system", | 63 "//mojo/public/c/system", |
| 63 ] | 64 ] |
| 65 } |
| 66 |
| 67 source_set("shell_test_support") { |
| 68 testonly = true |
| 69 sources = [ |
| 70 "lib/shell_test.cc", |
| 71 "shell_test.h", |
| 72 ] |
| 73 |
| 74 public_deps = [ |
| 75 ":cpp", |
| 76 "//testing/gtest", |
| 77 ] |
| 78 |
| 79 deps = [ |
| 80 "//base", |
| 81 "//base/test:test_support", |
| 82 "//mojo/logging", |
| 83 "//mojo/public/cpp/bindings", |
| 84 "//mojo/public/cpp/system", |
| 85 "//services/shell/background:lib", |
| 86 "//services/shell/public/interfaces:interfaces_cpp_sources", |
| 87 ] |
| 88 |
| 89 data_deps = [] |
| 90 } |
| 64 } | 91 } |
| 65 | |
| 66 source_set("shell_test_support") { | |
| 67 testonly = true | |
| 68 sources = [ | |
| 69 "lib/shell_test.cc", | |
| 70 "shell_test.h", | |
| 71 ] | |
| 72 | |
| 73 public_deps = [ | |
| 74 ":cpp", | |
| 75 "//testing/gtest", | |
| 76 ] | |
| 77 | |
| 78 deps = [ | |
| 79 "//base", | |
| 80 "//base/test:test_support", | |
| 81 "//mojo/logging", | |
| 82 "//mojo/public/cpp/bindings", | |
| 83 "//mojo/public/cpp/system", | |
| 84 "//services/shell/background:lib", | |
| 85 "//services/shell/public/interfaces:interfaces_cpp_sources", | |
| 86 ] | |
| 87 | |
| 88 data_deps = [] | |
| 89 } | |
| OLD | NEW |