Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |