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

Side by Side Diff: base/BUILD.gn

Issue 1569553005: Use base/time/time_posix.cc on OS X and iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation on Mac Created 4 years, 11 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 | « no previous file | base/base.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 (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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 "time/clock.cc", 793 "time/clock.cc",
794 "time/clock.h", 794 "time/clock.h",
795 "time/default_clock.cc", 795 "time/default_clock.cc",
796 "time/default_clock.h", 796 "time/default_clock.h",
797 "time/default_tick_clock.cc", 797 "time/default_tick_clock.cc",
798 "time/default_tick_clock.h", 798 "time/default_tick_clock.h",
799 "time/tick_clock.cc", 799 "time/tick_clock.cc",
800 "time/tick_clock.h", 800 "time/tick_clock.h",
801 "time/time.cc", 801 "time/time.cc",
802 "time/time.h", 802 "time/time.h",
803 "time/time_mac.cc",
804 "time/time_posix.cc", 803 "time/time_posix.cc",
805 "time/time_win.cc", 804 "time/time_win.cc",
806 "timer/elapsed_timer.cc", 805 "timer/elapsed_timer.cc",
807 "timer/elapsed_timer.h", 806 "timer/elapsed_timer.h",
808 "timer/hi_res_timer_manager.h", 807 "timer/hi_res_timer_manager.h",
809 "timer/hi_res_timer_manager_posix.cc", 808 "timer/hi_res_timer_manager_posix.cc",
810 "timer/hi_res_timer_manager_win.cc", 809 "timer/hi_res_timer_manager_win.cc",
811 "timer/mock_timer.cc", 810 "timer/mock_timer.cc",
812 "timer/mock_timer.h", 811 "timer/mock_timer.h",
813 "timer/timer.cc", 812 "timer/timer.cc",
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
1283 "mac/scoped_nsautorelease_pool.h", 1282 "mac/scoped_nsautorelease_pool.h",
1284 "mac/scoped_nsautorelease_pool.mm", 1283 "mac/scoped_nsautorelease_pool.mm",
1285 "mac/scoped_nsobject.h", 1284 "mac/scoped_nsobject.h",
1286 "mac/scoped_objc_class_swizzler.h", 1285 "mac/scoped_objc_class_swizzler.h",
1287 "mac/scoped_objc_class_swizzler.mm", 1286 "mac/scoped_objc_class_swizzler.mm",
1288 "message_loop/message_pump_mac.h", 1287 "message_loop/message_pump_mac.h",
1289 "message_loop/message_pump_mac.mm", 1288 "message_loop/message_pump_mac.mm",
1290 "process/memory_stubs.cc", 1289 "process/memory_stubs.cc",
1291 "strings/sys_string_conversions_mac.mm", 1290 "strings/sys_string_conversions_mac.mm",
1292 "threading/platform_thread_mac.mm", 1291 "threading/platform_thread_mac.mm",
1293 "time/time_mac.cc",
1294 ] 1292 ]
1295 1293
1296 set_sources_assignment_filter(sources_assignment_filter) 1294 set_sources_assignment_filter(sources_assignment_filter)
1297 } 1295 }
1298 1296
1299 if (!use_glib) { 1297 if (!use_glib) {
1300 sources -= [ 1298 sources -= [
1301 "message_loop/message_pump_glib.cc", 1299 "message_loop/message_pump_glib.cc",
1302 "message_loop/message_pump_glib.h", 1300 "message_loop/message_pump_glib.h",
1303 ] 1301 ]
(...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after
2142 2140
2143 # GYP: //base.gyp:base_java_unittest_support 2141 # GYP: //base.gyp:base_java_unittest_support
2144 android_library("base_java_unittest_support") { 2142 android_library("base_java_unittest_support") {
2145 deps = [ 2143 deps = [
2146 ":base_java", 2144 ":base_java",
2147 ] 2145 ]
2148 java_files = 2146 java_files =
2149 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2147 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2150 } 2148 }
2151 } 2149 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698