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

Side by Side Diff: chrome/BUILD.gn

Issue 1412803002: Switch Chrome to dlopen() the Google Chrome Framework.framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a shim so that Chrome does not link chrome_dll Created 5 years, 1 month 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
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/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/locales.gni") 7 import("//build/config/locales.gni")
8 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build/config/win/manifest.gni") 10 import("//build/config/win/manifest.gni")
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 202
203 if (use_x11) { 203 if (use_x11) {
204 configs += [ 204 configs += [
205 "//build/config/linux:x11", 205 "//build/config/linux:x11",
206 "//build/config/linux:xext", 206 "//build/config/linux:xext",
207 ] 207 ]
208 } 208 }
209 } 209 }
210 210
211 if (is_mac) { 211 if (is_mac) {
212 sources += [ "app/chrome_exe_main_mac.cc" ] 212 sources += [ "app/chrome_exe_main_mac.c" ]
213 deps += [ ":chrome_dll" ] 213 deps += [ ":chrome_dll" ]
214 214
215 # TODO(GYP) lots more stuff in the is_mac block. 215 # TODO(GYP) lots more stuff in the is_mac block.
216 } else { # Non-Mac. 216 } else { # Non-Mac.
217 # These files are used by the installer so we need a public dep. 217 # These files are used by the installer so we need a public dep.
218 public_deps += [ 218 public_deps += [
219 ":packed_extra_resources", 219 ":packed_extra_resources",
220 ":packed_resources", 220 ":packed_resources",
221 ] 221 ]
222 deps += [ 222 deps += [
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1052 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1053 "//chrome/tools/build/linux/chrome-wrapper", 1053 "//chrome/tools/build/linux/chrome-wrapper",
1054 "//third_party/xdg-utils/scripts/xdg-mime", 1054 "//third_party/xdg-utils/scripts/xdg-mime",
1055 "//third_party/xdg-utils/scripts/xdg-settings", 1055 "//third_party/xdg-utils/scripts/xdg-settings",
1056 ] 1056 ]
1057 outputs = [ 1057 outputs = [
1058 "$root_out_dir/{{source_file_part}}", 1058 "$root_out_dir/{{source_file_part}}",
1059 ] 1059 ]
1060 } 1060 }
1061 } 1061 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698