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

Side by Side Diff: base/BUILD.gn

Issue 1318153005: Bump min SDK version to 10.9 and suppress deprecation warnings (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 3 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 ('k') | build/config/mac/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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.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 } 10 }
(...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 deps += [ "//third_party/libevent" ] 763 deps += [ "//third_party/libevent" ]
764 } 764 }
765 765
766 # Mac. 766 # Mac.
767 if (is_mac) { 767 if (is_mac) {
768 sources -= [ 768 sources -= [
769 "native_library_posix.cc", 769 "native_library_posix.cc",
770 "strings/sys_string_conversions_posix.cc", 770 "strings/sys_string_conversions_posix.cc",
771 "threading/platform_thread_internal_posix.cc", 771 "threading/platform_thread_internal_posix.cc",
772 ] 772 ]
773
774 # 10.6 vs 10.9 min sdk version
cdotstout 2015/09/08 21:10:20 Can you clarify this comment?
775 cflags = [ "-Wno-deprecated-declarations" ]
773 } else { 776 } else {
774 # Non-Mac. 777 # Non-Mac.
775 sources -= [ 778 sources -= [
776 "files/file_path_watcher_fsevents.cc", 779 "files/file_path_watcher_fsevents.cc",
777 "files/file_path_watcher_fsevents.h", 780 "files/file_path_watcher_fsevents.h",
778 "files/file_path_watcher_kqueue.cc", 781 "files/file_path_watcher_kqueue.cc",
779 "files/file_path_watcher_kqueue.h", 782 "files/file_path_watcher_kqueue.h",
780 ] 783 ]
781 } 784 }
782 785
(...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after
1511 1514
1512 # GYP: //base.gyp:base_java_unittest_support 1515 # GYP: //base.gyp:base_java_unittest_support
1513 android_library("base_java_unittest_support") { 1516 android_library("base_java_unittest_support") {
1514 deps = [ 1517 deps = [
1515 ":base_java", 1518 ":base_java",
1516 ] 1519 ]
1517 java_files = 1520 java_files =
1518 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1521 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1519 } 1522 }
1520 } 1523 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | build/config/mac/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698