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

Side by Side Diff: build/config/mac/rules.gni

Issue 2053613002: Make the notification builder more XPC friendly (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase + Peter's comments 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 | « no previous file | chrome/browser/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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/config/mac/base_rules.gni") 5 import("//build/config/mac/base_rules.gni")
6 6
7 # Generates Info.plist files for Mac apps and frameworks. 7 # Generates Info.plist files for Mac apps and frameworks.
8 # 8 #
9 # Arguments 9 # Arguments
10 # 10 #
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 "testonly", 331 "testonly",
332 ]) 332 ])
333 if (!defined(deps)) { 333 if (!defined(deps)) {
334 deps = [] 334 deps = []
335 } 335 }
336 deps += [ 336 deps += [
337 ":$_executable_bundle_data", 337 ":$_executable_bundle_data",
338 ":$_info_plist_bundle_data", 338 ":$_info_plist_bundle_data",
339 ":$_pkg_info_bundle_data", 339 ":$_pkg_info_bundle_data",
340 ] 340 ]
341 product_type = "com.apple.product-type.application" 341
Robert Sesek 2016/06/17 12:46:16 Remove this change.
Miguel Garcia 2016/06/17 17:10:49 Done.
342 bundle_root_dir = "$root_out_dir/${_output_name}.app/Contents" 342 bundle_root_dir = "$root_out_dir/${_output_name}.app/Contents"
343 bundle_resources_dir = "$bundle_root_dir/Resources" 343 bundle_resources_dir = "$bundle_root_dir/Resources"
344 bundle_executable_dir = "$bundle_root_dir/MacOS" 344 bundle_executable_dir = "$bundle_root_dir/MacOS"
345 } 345 }
346 } 346 }
347 347
348 # Template to package a loadable_module into a .plugin bundle. 348 # Template to package a loadable_module into a .plugin bundle.
349 # 349 #
350 # This takes no extra arguments that differ from a loadable_module. 350 # This takes no extra arguments that differ from a loadable_module.
351 template("mac_plugin_bundle") { 351 template("mac_plugin_bundle") {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 ]) 400 ])
401 if (!defined(deps)) { 401 if (!defined(deps)) {
402 deps = [] 402 deps = []
403 } 403 }
404 deps += [ ":$_loadable_module_bundle_data" ] 404 deps += [ ":$_loadable_module_bundle_data" ]
405 405
406 bundle_root_dir = "$root_out_dir/$_output_name.plugin/Contents" 406 bundle_root_dir = "$root_out_dir/$_output_name.plugin/Contents"
407 bundle_executable_dir = "$bundle_root_dir/MacOS" 407 bundle_executable_dir = "$bundle_root_dir/MacOS"
408 } 408 }
409 } 409 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698