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

Side by Side Diff: chrome/android/BUILD.gn

Issue 1101723004: Revert "Intercept base::File Open/Close" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | « build/gn_migration.gypi ('k') | chrome/chrome_shell.gypi » ('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/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 import("//build/module_args/v8.gni") 7 import("//build/module_args/v8.gni")
8 import("//chrome/version.gni") 8 import("//chrome/version.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//third_party/icu/config.gni") 10 import("//third_party/icu/config.gni")
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 shared_library("chrome_shell") { 185 shared_library("chrome_shell") {
186 testonly = true 186 testonly = true
187 sources = [ 187 sources = [
188 "shell/chrome_main_delegate_chrome_shell_android.cc", 188 "shell/chrome_main_delegate_chrome_shell_android.cc",
189 "shell/chrome_main_delegate_chrome_shell_android.h", 189 "shell/chrome_main_delegate_chrome_shell_android.h",
190 "shell/chrome_shell_entry_point.cc", 190 "shell/chrome_shell_entry_point.cc",
191 ] 191 ]
192 deps = [ 192 deps = [
193 ":chrome_shell_base", 193 ":chrome_shell_base",
194 ] 194 ]
195
196 # GYP: via base/files/protect_file_posix.gypi
197 # TODO(pasko): Remove this non-trivial linker wrapping as soon as
198 # crbug.com/424562 is fixed.
199 if (!is_component_build) {
200 ldflags = [ "-Wl,--wrap=close" ]
201 deps += [ "//base:protect_file_posix" ]
202 }
203 } 195 }
204 196
205 # GYP: //chrome/chrome_shell.gypi:libchromesyncshell 197 # GYP: //chrome/chrome_shell.gypi:libchromesyncshell
206 shared_library("chrome_sync_shell") { 198 shared_library("chrome_sync_shell") {
207 testonly = true 199 testonly = true
208 sources = [ 200 sources = [
209 #"shell/chrome_shell_entry_point.cc", 201 #"shell/chrome_shell_entry_point.cc",
210 #"sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc", 202 #"sync_shell/chrome_main_delegate_chrome_sync_shell_android.cc",
211 #"sync_shell/chrome_main_delegate_chrome_sync_shell_android.h", 203 #"sync_shell/chrome_main_delegate_chrome_sync_shell_android.h",
212 ] 204 ]
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 ] 524 ]
533 } 525 }
534 526
535 zip("chrome_version_srcjar") { 527 zip("chrome_version_srcjar") {
536 inputs = [ 528 inputs = [
537 chrome_version_java_file, 529 chrome_version_java_file,
538 ] 530 ]
539 output = "$target_gen_dir/$target_name.srcjar" 531 output = "$target_gen_dir/$target_name.srcjar"
540 base_dir = chrome_version_java_dir 532 base_dir = chrome_version_java_dir
541 } 533 }
OLDNEW
« no previous file with comments | « build/gn_migration.gypi ('k') | chrome/chrome_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698