| 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("//third_party/mojo/src/mojo/public/mojo_sdk.gni") | |
| 6 | |
| 7 # GYP version: mojo/mojo_base.gyp:mojo_application_base | 5 # GYP version: mojo/mojo_base.gyp:mojo_application_base |
| 8 source_set("cpp") { | 6 source_set("cpp") { |
| 9 deps = [ | 7 deps = [ |
| 10 ":sources", | 8 ":sources", |
| 11 ":init_commandline", | 9 ":init_commandline", |
| 12 ] | 10 ] |
| 13 } | 11 } |
| 14 | 12 |
| 15 # Like the target above, but without special commandline initialization that | 13 # Like the target above, but without special commandline initialization that |
| 16 # apps use. | 14 # apps use. |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 ] | 90 ] |
| 93 | 91 |
| 94 data_deps = [] | 92 data_deps = [] |
| 95 if (is_android) { | 93 if (is_android) { |
| 96 data_deps += [ "//mojo/android" ] | 94 data_deps += [ "//mojo/android" ] |
| 97 } | 95 } |
| 98 if (!is_component_build) { | 96 if (!is_component_build) { |
| 99 data_deps += [ "//mojo/runner" ] | 97 data_deps += [ "//mojo/runner" ] |
| 100 } | 98 } |
| 101 } | 99 } |
| OLD | NEW |