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

Side by Side Diff: remoting/host/mac/BUILD.gn

Issue 2892493002: Replace sanitizers:deps with exe_and_shlib_deps (Chromium repo only) (Closed)
Patch Set: Fix find/replace error in nacl Created 3 years, 7 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 | « remoting/host/linux/BUILD.gn ('k') | remoting/test/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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("//remoting/build/config/remoting_build.gni") 5 import("//remoting/build/config/remoting_build.gni")
6 6
7 source_set("constants") { 7 source_set("constants") {
8 defines = [ 8 defines = [
9 "HOST_BUNDLE_NAME=\"" + host_bundle_name + "\"", 9 "HOST_BUNDLE_NAME=\"" + host_bundle_name + "\"",
10 "PREFPANE_BUNDLE_NAME=\"" + prefpane_bundle_name + "\"", 10 "PREFPANE_BUNDLE_NAME=\"" + prefpane_bundle_name + "\"",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 "VERSION_SHORT=$remoting_version_short", 68 "VERSION_SHORT=$remoting_version_short",
69 "MACOSX_DEPLOYMENT_TARGET=10.7", 69 "MACOSX_DEPLOYMENT_TARGET=10.7",
70 ] 70 ]
71 71
72 # TODO(joedow): Re-enable or replace with Crashpad: crbug.com/637884. 72 # TODO(joedow): Re-enable or replace with Crashpad: crbug.com/637884.
73 # if (is_chrome_branded && is_official_build) { 73 # if (is_chrome_branded && is_official_build) {
74 # defines = [ "REMOTING_ENABLE_BREAKPAD" ] 74 # defines = [ "REMOTING_ENABLE_BREAKPAD" ]
75 # } 75 # }
76 76
77 deps = [ 77 deps = [
78 "//build/config/sanitizers:deps", 78 "//build/config:exe_and_shlib_deps",
79 "//remoting/base:breakpad", 79 "//remoting/base:breakpad",
80 "//remoting/host:main", 80 "//remoting/host:main",
81 "//remoting/host:remoting_me2me_host_static", 81 "//remoting/host:remoting_me2me_host_static",
82 "//remoting/host/installer:credits", 82 "//remoting/host/installer:credits",
83 "//remoting/resources", 83 "//remoting/resources",
84 ] 84 ]
85 85
86 foreach(locale, remoting_locales_with_underscores) { 86 foreach(locale, remoting_locales_with_underscores) {
87 deps += [ 87 deps += [
88 ":remoting_host_locale_${locale}_bundle_data", 88 ":remoting_host_locale_${locale}_bundle_data",
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 } 277 }
278 } 278 }
279 279
280 mac_xib_bundle_data("remoting_host_prefpane_xibs") { 280 mac_xib_bundle_data("remoting_host_prefpane_xibs") {
281 sources = [ 281 sources = [
282 "me2me_preference_pane.xib", 282 "me2me_preference_pane.xib",
283 "me2me_preference_pane_confirm_pin.xib", 283 "me2me_preference_pane_confirm_pin.xib",
284 "me2me_preference_pane_disable.xib", 284 "me2me_preference_pane_disable.xib",
285 ] 285 ]
286 } 286 }
OLDNEW
« no previous file with comments | « remoting/host/linux/BUILD.gn ('k') | remoting/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698