Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Side by Side Diff: mojo/public/mojo_application.gni

Issue 2048053003: Reland of Mojo: Eliminate duplicate C API symbols (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/public/c/system/thunks.cc ('k') | mojo/public/platform/native/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//build/toolchain/toolchain.gni") 5 import("//build/toolchain/toolchain.gni")
6 import("//mojo/public/mojo_constants.gni") 6 import("//mojo/public/mojo_constants.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 import("//build/config/zip.gni") 10 import("//build/config/zip.gni")
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 # Give the user an out; as some mojo services are depended on by the 84 # Give the user an out; as some mojo services are depended on by the
85 # runner. 85 # runner.
86 data_deps += [ "//services/shell/standalone" ] 86 data_deps += [ "//services/shell/standalone" ]
87 } 87 }
88 if (defined(invoker.data_deps)) { 88 if (defined(invoker.data_deps)) {
89 data_deps += invoker.data_deps 89 data_deps += invoker.data_deps
90 } 90 }
91 data_deps += mojo_data_deps 91 data_deps += mojo_data_deps
92 92
93 deps = [ 93 deps = [
94 "//mojo/public/c/system:for_shared_library", 94 "//mojo/public/c/system:set_thunks_for_app",
95 "//services/shell/public/cpp:application_support", 95 "//services/shell/public/cpp:application_support",
96 ] 96 ]
97 97
98 deps += mojo_deps 98 deps += mojo_deps
99 if (defined(invoker.public_deps)) { 99 if (defined(invoker.public_deps)) {
100 public_deps = invoker.public_deps 100 public_deps = invoker.public_deps
101 } 101 }
102 if (defined(invoker.all_dependent_configs)) { 102 if (defined(invoker.all_dependent_configs)) {
103 all_dependent_configs = invoker.all_dependent_configs 103 all_dependent_configs = invoker.all_dependent_configs
104 } 104 }
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 renaming_destinations = [ "${base_target_name}/${base_target_name}.mojo" ] 261 renaming_destinations = [ "${base_target_name}/${base_target_name}.mojo" ]
262 if (defined(invoker.resources)) { 262 if (defined(invoker.resources)) {
263 renaming_sources += invoker.resources 263 renaming_sources += invoker.resources
264 renaming_destinations += process_file_template( 264 renaming_destinations += process_file_template(
265 invoker.resources, 265 invoker.resources,
266 [ "$base_target_name/resources/{{source_file_part}}" ]) 266 [ "$base_target_name/resources/{{source_file_part}}" ])
267 } 267 }
268 } 268 }
269 } 269 }
270 } 270 }
OLDNEW
« no previous file with comments | « mojo/public/c/system/thunks.cc ('k') | mojo/public/platform/native/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698