| 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 ":init_commandline", | 9 ":init_commandline", |
| 10 ] | 10 ] |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "//third_party/mojo/src/mojo/public/cpp/bindings", | 95 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 96 "//third_party/mojo/src/mojo/public/cpp/environment", | 96 "//third_party/mojo/src/mojo/public/cpp/environment", |
| 97 "//third_party/mojo/src/mojo/public/cpp/system", | 97 "//third_party/mojo/src/mojo/public/cpp/system", |
| 98 "//testing/gtest", | 98 "//testing/gtest", |
| 99 ] | 99 ] |
| 100 | 100 |
| 101 data_deps = [] | 101 data_deps = [] |
| 102 if (is_android) { | 102 if (is_android) { |
| 103 data_deps += [ "//mojo/android" ] | 103 data_deps += [ "//mojo/android" ] |
| 104 } | 104 } |
| 105 if (!is_component_build) { | |
| 106 data_deps += [ "//mojo/runner" ] | |
| 107 } | |
| 108 } | 105 } |
| OLD | NEW |