Roll src/third_party/WebKit 3b1337e:6074f0e (svn 199892:199893)
[chromium-blink-merge.git] / base / BUILD.gn
blob6eac22e4d04c628dcfcc8e36cd66c73faeda7420
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
3 # found in the LICENSE file.
5 import("//build/config/ui.gni")
6 import("//testing/test.gni")
8 if (is_android) {
9   import("//build/config/android/rules.gni")
12 config("base_implementation") {
13   defines = [ "BASE_IMPLEMENTATION" ]
16 if (is_win) {
17   # This is in a separate config so the flags can be applied to dependents.
18   # ldflags in GN aren't automatically inherited.
19   config("base_win_linker_flags") {
20     ldflags = [
21       "/DELAYLOAD:cfgmgr32.dll",
22       "/DELAYLOAD:powrprof.dll",
23       "/DELAYLOAD:setupapi.dll",
24     ]
25   }
28 source_set("base_paths") {
29   sources = [
30     "base_paths.cc",
31     "base_paths.h",
32     "base_paths_android.cc",
33     "base_paths_android.h",
34     "base_paths_mac.h",
35     "base_paths_mac.mm",
36     "base_paths_posix.cc",
37     "base_paths_posix.h",
38     "base_paths_win.cc",
39     "base_paths_win.h",
40   ]
42   if (is_android || is_mac || is_ios) {
43     sources -= [ "base_paths_posix.cc" ]
44   }
46   if (is_nacl) {
47     sources -= [
48       "base_paths.cc",
49       "base_paths_posix.cc",
50     ]
51   }
53   configs += [ ":base_implementation" ]
55   deps = [
56     "//base/memory",
57     "//base/process",
58   ]
60   visibility = [ ":base" ]
63 component("base") {
64   sources = [
65     "allocator/allocator_extension.cc",
66     "allocator/allocator_extension.h",
67     "allocator/type_profiler_control.cc",
68     "allocator/type_profiler_control.h",
69     "android/animation_frame_time_histogram.cc",
70     "android/animation_frame_time_histogram.h",
71     "android/apk_assets.cc",
72     "android/apk_assets.h",
73     "android/application_status_listener.cc",
74     "android/application_status_listener.h",
75     "android/base_jni_onload.cc",
76     "android/base_jni_onload.h",
77     "android/base_jni_registrar.cc",
78     "android/base_jni_registrar.h",
79     "android/build_info.cc",
80     "android/build_info.h",
81     "android/command_line_android.cc",
82     "android/command_line_android.h",
83     "android/content_uri_utils.cc",
84     "android/content_uri_utils.h",
85     "android/cpu_features.cc",
86     "android/cxa_demangle_stub.cc",
87     "android/event_log.cc",
88     "android/event_log.h",
89     "android/field_trial_list.cc",
90     "android/field_trial_list.h",
91     "android/fifo_utils.cc",
92     "android/fifo_utils.h",
93     "android/important_file_writer_android.cc",
94     "android/important_file_writer_android.h",
95     "android/java_handler_thread.cc",
96     "android/java_handler_thread.h",
97     "android/java_runtime.cc",
98     "android/java_runtime.h",
99     "android/jni_android.cc",
100     "android/jni_android.h",
101     "android/jni_array.cc",
102     "android/jni_array.h",
103     "android/jni_registrar.cc",
104     "android/jni_registrar.h",
105     "android/jni_string.cc",
106     "android/jni_string.h",
107     "android/jni_utils.cc",
108     "android/jni_utils.h",
109     "android/jni_weak_ref.cc",
110     "android/jni_weak_ref.h",
111     "android/library_loader/library_load_from_apk_status_codes.h",
112     "android/library_loader/library_loader_hooks.cc",
113     "android/library_loader/library_loader_hooks.h",
114     "android/library_loader/library_prefetcher.cc",
115     "android/library_loader/library_prefetcher.h",
116     "android/locale_utils.cc",
117     "android/locale_utils.h",
118     "android/memory_pressure_listener_android.cc",
119     "android/memory_pressure_listener_android.h",
120     "android/path_service_android.cc",
121     "android/path_service_android.h",
122     "android/path_utils.cc",
123     "android/path_utils.h",
124     "android/record_histogram.cc",
125     "android/record_histogram.h",
126     "android/record_user_action.cc",
127     "android/record_user_action.h",
128     "android/scoped_java_ref.cc",
129     "android/scoped_java_ref.h",
130     "android/sys_utils.cc",
131     "android/sys_utils.h",
132     "android/thread_utils.h",
133     "android/trace_event_binding.cc",
134     "android/trace_event_binding.h",
135     "async_socket_io_handler.h",
136     "async_socket_io_handler_posix.cc",
137     "async_socket_io_handler_win.cc",
138     "at_exit.cc",
139     "at_exit.h",
140     "atomic_ref_count.h",
141     "atomic_sequence_num.h",
142     "atomicops.h",
143     "atomicops_internals_mac.h",
144     "atomicops_internals_portable.h",
145     "atomicops_internals_x86_msvc.h",
146     "auto_reset.h",
147     "barrier_closure.cc",
148     "barrier_closure.h",
149     "base64.cc",
150     "base64.h",
151     "base_export.h",
152     "base_switches.h",
153     "basictypes.h",
154     "big_endian.cc",
155     "big_endian.h",
156     "bind.h",
157     "bind_helpers.cc",
158     "bind_helpers.h",
159     "bind_internal.h",
160     "bind_internal_win.h",
161     "bits.h",
162     "build_time.cc",
163     "build_time.h",
164     "callback.h",
165     "callback_helpers.cc",
166     "callback_helpers.h",
167     "callback_internal.cc",
168     "callback_internal.h",
169     "cancelable_callback.h",
170     "command_line.cc",
171     "command_line.h",
172     "compiler_specific.h",
173     "containers/adapters.h",
174     "containers/hash_tables.h",
175     "containers/linked_list.h",
176     "containers/mru_cache.h",
177     "containers/scoped_ptr_hash_map.h",
178     "containers/scoped_ptr_map.h",
179     "containers/small_map.h",
180     "containers/stack_container.h",
181     "cpu.cc",
182     "cpu.h",
183     "critical_closure.h",
184     "critical_closure_internal_ios.mm",
185     "deferred_sequenced_task_runner.cc",
186     "deferred_sequenced_task_runner.h",
187     "environment.cc",
188     "environment.h",
189     "file_descriptor_posix.h",
190     "file_version_info.h",
191     "file_version_info_mac.h",
192     "file_version_info_mac.mm",
193     "file_version_info_win.cc",
194     "file_version_info_win.h",
195     "files/dir_reader_fallback.h",
196     "files/dir_reader_linux.h",
197     "files/dir_reader_posix.h",
198     "files/file.cc",
199     "files/file_enumerator.cc",
200     "files/file_enumerator.h",
201     "files/file_enumerator_posix.cc",
202     "files/file_enumerator_win.cc",
203     "files/file_path.cc",
204     "files/file_path.h",
205     "files/file_path_constants.cc",
206     "files/file_path_watcher.cc",
207     "files/file_path_watcher.h",
208     "files/file_path_watcher_fsevents.cc",
209     "files/file_path_watcher_fsevents.h",
210     "files/file_path_watcher_kqueue.cc",
211     "files/file_path_watcher_kqueue.h",
212     "files/file_path_watcher_linux.cc",
213     "files/file_path_watcher_mac.cc",
214     "files/file_path_watcher_win.cc",
215     "files/file_posix.cc",
216     "files/file_proxy.cc",
217     "files/file_proxy.h",
218     "files/file_tracing.cc",
219     "files/file_tracing.h",
220     "files/file_util.cc",
221     "files/file_util.h",
222     "files/file_util_android.cc",
223     "files/file_util_linux.cc",
224     "files/file_util_mac.mm",
225     "files/file_util_posix.cc",
226     "files/file_util_proxy.cc",
227     "files/file_util_proxy.h",
228     "files/file_util_win.cc",
229     "files/file_win.cc",
230     "files/important_file_writer.cc",
231     "files/important_file_writer.h",
232     "files/memory_mapped_file.cc",
233     "files/memory_mapped_file.h",
234     "files/memory_mapped_file_posix.cc",
235     "files/memory_mapped_file_win.cc",
236     "files/scoped_file.cc",
237     "files/scoped_file.h",
238     "files/scoped_temp_dir.cc",
239     "files/scoped_temp_dir.h",
240     "format_macros.h",
241     "gtest_prod_util.h",
242     "guid.cc",
243     "guid.h",
244     "guid_posix.cc",
245     "guid_win.cc",
246     "hash.cc",
247     "hash.h",
248     "id_map.h",
249     "ios/device_util.h",
250     "ios/device_util.mm",
251     "ios/ios_util.h",
252     "ios/ios_util.mm",
253     "ios/scoped_critical_action.h",
254     "ios/scoped_critical_action.mm",
255     "ios/weak_nsobject.h",
256     "ios/weak_nsobject.mm",
257     "lazy_instance.cc",
258     "lazy_instance.h",
259     "linux_util.cc",
260     "linux_util.h",
261     "location.cc",
262     "location.h",
263     "logging.cc",
264     "logging.h",
265     "logging_win.cc",
266     "logging_win.h",
267     "mac/authorization_util.h",
268     "mac/authorization_util.mm",
269     "mac/bind_objc_block.h",
270     "mac/bundle_locations.h",
271     "mac/bundle_locations.mm",
272     "mac/call_with_eh_frame.cc",
273     "mac/call_with_eh_frame.h",
274     "mac/call_with_eh_frame_asm.S",
275     "mac/cocoa_protocols.h",
276     "mac/dispatch_source_mach.cc",
277     "mac/dispatch_source_mach.h",
278     "mac/foundation_util.h",
279     "mac/foundation_util.mm",
280     "mac/launch_services_util.cc",
281     "mac/launch_services_util.h",
282     "mac/launchd.cc",
283     "mac/launchd.h",
284     "mac/libdispatch_task_runner.cc",
285     "mac/libdispatch_task_runner.h",
286     "mac/mac_logging.cc",
287     "mac/mac_logging.h",
288     "mac/mac_util.h",
289     "mac/mac_util.mm",
290     "mac/mach_logging.cc",
291     "mac/mach_logging.h",
292     "mac/objc_property_releaser.h",
293     "mac/objc_property_releaser.mm",
294     "mac/os_crash_dumps.cc",
295     "mac/os_crash_dumps.h",
296     "mac/scoped_aedesc.h",
297     "mac/scoped_authorizationref.h",
298     "mac/scoped_block.h",
299     "mac/scoped_cftyperef.h",
300     "mac/scoped_ioobject.h",
301     "mac/scoped_ioplugininterface.h",
302     "mac/scoped_launch_data.h",
303     "mac/scoped_mach_port.cc",
304     "mac/scoped_mach_port.h",
305     "mac/scoped_mach_vm.cc",
306     "mac/scoped_mach_vm.h",
307     "mac/scoped_nsautorelease_pool.h",
308     "mac/scoped_nsautorelease_pool.mm",
309     "mac/scoped_nsobject.h",
310     "mac/scoped_objc_class_swizzler.h",
311     "mac/scoped_objc_class_swizzler.mm",
312     "mac/scoped_sending_event.h",
313     "mac/scoped_sending_event.mm",
314     "mac/sdk_forward_declarations.h",
315     "mac/sdk_forward_declarations.mm",
316     "macros.h",
317     "md5.cc",
318     "md5.h",
319     "message_loop/incoming_task_queue.cc",
320     "message_loop/incoming_task_queue.h",
321     "message_loop/message_loop.cc",
322     "message_loop/message_loop.h",
323     "message_loop/message_loop_task_runner.cc",
324     "message_loop/message_loop_task_runner.h",
325     "message_loop/message_pump.cc",
326     "message_loop/message_pump.h",
327     "message_loop/message_pump_android.cc",
328     "message_loop/message_pump_android.h",
329     "message_loop/message_pump_default.cc",
330     "message_loop/message_pump_default.h",
331     "message_loop/message_pump_glib.cc",
332     "message_loop/message_pump_glib.h",
333     "message_loop/message_pump_io_ios.cc",
334     "message_loop/message_pump_io_ios.h",
335     "message_loop/message_pump_libevent.cc",
336     "message_loop/message_pump_libevent.h",
337     "message_loop/message_pump_mac.h",
338     "message_loop/message_pump_mac.mm",
339     "message_loop/message_pump_win.cc",
340     "message_loop/message_pump_win.h",
341     "move.h",
342     "native_library.h",
343     "native_library_ios.mm",
344     "native_library_mac.mm",
345     "native_library_posix.cc",
346     "native_library_win.cc",
347     "nix/mime_util_xdg.cc",
348     "nix/mime_util_xdg.h",
349     "nix/xdg_util.cc",
350     "nix/xdg_util.h",
351     "numerics/safe_conversions.h",
352     "numerics/safe_conversions_impl.h",
353     "numerics/safe_math.h",
354     "numerics/safe_math_impl.h",
355     "observer_list.h",
356     "observer_list_threadsafe.h",
357     "os_compat_android.cc",
358     "os_compat_android.h",
359     "os_compat_nacl.cc",
360     "os_compat_nacl.h",
361     "path_service.cc",
362     "path_service.h",
363     "pending_task.cc",
364     "pending_task.h",
365     "pickle.cc",
366     "pickle.h",
367     "posix/eintr_wrapper.h",
368     "posix/file_descriptor_shuffle.cc",
369     "posix/global_descriptors.cc",
370     "posix/global_descriptors.h",
371     "posix/safe_strerror.cc",
372     "posix/safe_strerror.h",
373     "posix/unix_domain_socket_linux.cc",
374     "posix/unix_domain_socket_linux.h",
375     "power_monitor/power_monitor.cc",
376     "power_monitor/power_monitor.h",
377     "power_monitor/power_monitor_device_source.cc",
378     "power_monitor/power_monitor_device_source.h",
379     "power_monitor/power_monitor_device_source_android.cc",
380     "power_monitor/power_monitor_device_source_android.h",
381     "power_monitor/power_monitor_device_source_chromeos.cc",
382     "power_monitor/power_monitor_device_source_ios.mm",
383     "power_monitor/power_monitor_device_source_mac.mm",
384     "power_monitor/power_monitor_device_source_posix.cc",
385     "power_monitor/power_monitor_device_source_win.cc",
386     "power_monitor/power_monitor_source.cc",
387     "power_monitor/power_monitor_source.h",
388     "power_monitor/power_observer.h",
389     "profiler/alternate_timer.cc",
390     "profiler/alternate_timer.h",
391     "profiler/native_stack_sampler.cc",
392     "profiler/native_stack_sampler.h",
393     "profiler/scoped_profile.cc",
394     "profiler/scoped_profile.h",
395     "profiler/scoped_tracker.cc",
396     "profiler/scoped_tracker.h",
397     "profiler/stack_sampling_profiler.cc",
398     "profiler/stack_sampling_profiler.h",
399     "profiler/stack_sampling_profiler_posix.cc",
400     "profiler/stack_sampling_profiler_win.cc",
401     "profiler/tracked_time.cc",
402     "profiler/tracked_time.h",
403     "rand_util.cc",
404     "rand_util.h",
405     "rand_util_nacl.cc",
406     "rand_util_posix.cc",
407     "rand_util_win.cc",
408     "run_loop.cc",
409     "run_loop.h",
410     "scoped_generic.h",
411     "scoped_native_library.cc",
412     "scoped_native_library.h",
413     "scoped_observer.h",
414     "sequence_checker.h",
415     "sequence_checker_impl.cc",
416     "sequence_checker_impl.h",
417     "sequenced_task_runner.cc",
418     "sequenced_task_runner.h",
419     "sequenced_task_runner_helpers.h",
420     "sha1.h",
421     "sha1_portable.cc",
422     "sha1_win.cc",
423     "single_thread_task_runner.h",
424     "stl_util.h",
425     "strings/latin1_string_conversions.cc",
426     "strings/latin1_string_conversions.h",
427     "strings/nullable_string16.cc",
428     "strings/nullable_string16.h",
429     "strings/pattern.cc",
430     "strings/pattern.h",
431     "strings/safe_sprintf.cc",
432     "strings/safe_sprintf.h",
433     "strings/string16.cc",
434     "strings/string16.h",
435     "strings/string_number_conversions.cc",
436     "strings/string_number_conversions.h",
437     "strings/string_piece.cc",
438     "strings/string_piece.h",
439     "strings/string_split.cc",
440     "strings/string_split.h",
441     "strings/string_tokenizer.h",
442     "strings/string_util.cc",
443     "strings/string_util.h",
444     "strings/string_util_constants.cc",
445     "strings/string_util_posix.h",
446     "strings/string_util_win.h",
447     "strings/stringize_macros.h",
448     "strings/stringprintf.cc",
449     "strings/stringprintf.h",
450     "strings/sys_string_conversions.h",
451     "strings/sys_string_conversions_mac.mm",
452     "strings/sys_string_conversions_posix.cc",
453     "strings/sys_string_conversions_win.cc",
454     "strings/utf_offset_string_conversions.cc",
455     "strings/utf_offset_string_conversions.h",
456     "strings/utf_string_conversion_utils.cc",
457     "strings/utf_string_conversion_utils.h",
458     "strings/utf_string_conversions.cc",
459     "strings/utf_string_conversions.h",
460     "supports_user_data.cc",
461     "supports_user_data.h",
462     "sync_socket.h",
463     "sync_socket_posix.cc",
464     "sync_socket_win.cc",
465     "synchronization/cancellation_flag.cc",
466     "synchronization/cancellation_flag.h",
467     "synchronization/condition_variable.h",
468     "synchronization/condition_variable_posix.cc",
469     "synchronization/condition_variable_win.cc",
470     "synchronization/lock.cc",
471     "synchronization/lock.h",
472     "synchronization/lock_impl.h",
473     "synchronization/lock_impl_posix.cc",
474     "synchronization/lock_impl_win.cc",
475     "synchronization/spin_wait.h",
476     "synchronization/waitable_event.h",
477     "synchronization/waitable_event_posix.cc",
478     "synchronization/waitable_event_watcher.h",
479     "synchronization/waitable_event_watcher_posix.cc",
480     "synchronization/waitable_event_watcher_win.cc",
481     "synchronization/waitable_event_win.cc",
482     "sys_byteorder.h",
483     "sys_info.cc",
484     "sys_info.h",
485     "sys_info_android.cc",
486     "sys_info_chromeos.cc",
487     "sys_info_freebsd.cc",
488     "sys_info_ios.mm",
489     "sys_info_linux.cc",
490     "sys_info_mac.cc",
491     "sys_info_openbsd.cc",
492     "sys_info_posix.cc",
493     "sys_info_win.cc",
494     "system_monitor/system_monitor.cc",
495     "system_monitor/system_monitor.h",
496     "task/cancelable_task_tracker.cc",
497     "task/cancelable_task_tracker.h",
498     "task_runner.cc",
499     "task_runner.h",
500     "task_runner_util.h",
501     "template_util.h",
502     "third_party/dmg_fp/dmg_fp.h",
503     "third_party/dmg_fp/dtoa_wrapper.cc",
504     "third_party/dmg_fp/g_fmt.cc",
505     "third_party/icu/icu_utf.cc",
506     "third_party/icu/icu_utf.h",
507     "third_party/nspr/prtime.cc",
508     "third_party/nspr/prtime.h",
509     "third_party/superfasthash/superfasthash.c",
510     "thread_task_runner_handle.cc",
511     "thread_task_runner_handle.h",
512     "threading/non_thread_safe.h",
513     "threading/non_thread_safe_impl.cc",
514     "threading/non_thread_safe_impl.h",
515     "threading/platform_thread.h",
516     "threading/platform_thread_android.cc",
517     "threading/platform_thread_internal_posix.cc",
518     "threading/platform_thread_internal_posix.h",
519     "threading/platform_thread_linux.cc",
520     "threading/platform_thread_mac.mm",
521     "threading/platform_thread_posix.cc",
522     "threading/platform_thread_win.cc",
523     "threading/post_task_and_reply_impl.cc",
524     "threading/post_task_and_reply_impl.h",
525     "threading/sequenced_worker_pool.cc",
526     "threading/sequenced_worker_pool.h",
527     "threading/simple_thread.cc",
528     "threading/simple_thread.h",
529     "threading/thread.cc",
530     "threading/thread.h",
531     "threading/thread_checker.h",
532     "threading/thread_checker_impl.cc",
533     "threading/thread_checker_impl.h",
534     "threading/thread_collision_warner.cc",
535     "threading/thread_collision_warner.h",
536     "threading/thread_id_name_manager.cc",
537     "threading/thread_id_name_manager.h",
538     "threading/thread_local.h",
539     "threading/thread_local_android.cc",
540     "threading/thread_local_posix.cc",
541     "threading/thread_local_storage.cc",
542     "threading/thread_local_storage.h",
543     "threading/thread_local_storage_posix.cc",
544     "threading/thread_local_storage_win.cc",
545     "threading/thread_local_win.cc",
546     "threading/thread_restrictions.cc",
547     "threading/thread_restrictions.h",
548     "threading/watchdog.cc",
549     "threading/watchdog.h",
550     "threading/worker_pool.cc",
551     "threading/worker_pool.h",
552     "threading/worker_pool_posix.cc",
553     "threading/worker_pool_posix.h",
554     "threading/worker_pool_win.cc",
555     "time/clock.cc",
556     "time/clock.h",
557     "time/default_clock.cc",
558     "time/default_clock.h",
559     "time/default_tick_clock.cc",
560     "time/default_tick_clock.h",
561     "time/tick_clock.cc",
562     "time/tick_clock.h",
563     "time/time.cc",
564     "time/time.h",
565     "time/time_mac.cc",
566     "time/time_posix.cc",
567     "time/time_win.cc",
568     "timer/elapsed_timer.cc",
569     "timer/elapsed_timer.h",
570     "timer/hi_res_timer_manager.h",
571     "timer/hi_res_timer_manager_posix.cc",
572     "timer/hi_res_timer_manager_win.cc",
573     "timer/mock_timer.cc",
574     "timer/mock_timer.h",
575     "timer/timer.cc",
576     "timer/timer.h",
577     "tracked_objects.cc",
578     "tracked_objects.h",
579     "tracking_info.cc",
580     "tracking_info.h",
581     "tuple.h",
582     "value_conversions.cc",
583     "value_conversions.h",
584     "values.cc",
585     "values.h",
586     "version.cc",
587     "version.h",
588     "vlog.cc",
589     "vlog.h",
590     "win/enum_variant.cc",
591     "win/enum_variant.h",
592     "win/event_trace_consumer.h",
593     "win/event_trace_controller.cc",
594     "win/event_trace_controller.h",
595     "win/event_trace_provider.cc",
596     "win/event_trace_provider.h",
597     "win/i18n.cc",
598     "win/i18n.h",
599     "win/iat_patch_function.cc",
600     "win/iat_patch_function.h",
601     "win/iunknown_impl.cc",
602     "win/iunknown_impl.h",
603     "win/message_window.cc",
604     "win/message_window.h",
605     "win/metro.cc",
606     "win/metro.h",
607     "win/object_watcher.cc",
608     "win/object_watcher.h",
609     "win/registry.cc",
610     "win/registry.h",
611     "win/resource_util.cc",
612     "win/resource_util.h",
613     "win/scoped_bstr.cc",
614     "win/scoped_bstr.h",
615     "win/scoped_co_mem.h",
616     "win/scoped_com_initializer.h",
617     "win/scoped_comptr.h",
618     "win/scoped_gdi_object.h",
619     "win/scoped_handle.cc",
620     "win/scoped_handle.h",
621     "win/scoped_hdc.h",
622     "win/scoped_hglobal.h",
623     "win/scoped_process_information.cc",
624     "win/scoped_process_information.h",
625     "win/scoped_propvariant.h",
626     "win/scoped_select_object.h",
627     "win/scoped_variant.cc",
628     "win/scoped_variant.h",
629     "win/shortcut.cc",
630     "win/shortcut.h",
631     "win/startup_information.cc",
632     "win/startup_information.h",
633     "win/win_util.cc",
634     "win/win_util.h",
635     "win/windows_version.cc",
636     "win/windows_version.h",
637     "win/wrapped_window_proc.cc",
638     "win/wrapped_window_proc.h",
639   ]
641   sources -= [
642     "sys_info_freebsd.cc",
643     "sys_info_openbsd.cc",
644   ]
646   data = []
648   configs += [
649     ":base_implementation",
650     "//build/config:precompiled_headers",
651   ]
653   deps = [
654     ":base_static",
655     "//base/allocator:allocator_extension_thunks",
656     "//base/third_party/dynamic_annotations",
657     "//third_party/modp_b64",
658   ]
660   public_deps = [
661     ":base_paths",
662     "//base/debug",
663     "//base/json",
664     "//base/memory",
665     "//base/metrics",
666     "//base/process",
667     "//base/trace_event",
668   ]
670   # Allow more direct string conversions on platforms with native utf8
671   # strings
672   if (is_mac || is_ios || is_chromeos) {
673     defines = [ "SYSTEM_NATIVE_UTF8" ]
674   }
676   if (is_android) {
677     sources -= [ "power_monitor/power_monitor_device_source_posix.cc" ]
679     # Android uses some Linux sources, put those back.
680     set_sources_assignment_filter([])
681     sources += [
682       "files/file_path_watcher_linux.cc",
683       "posix/unix_domain_socket_linux.cc",
684       "sys_info_linux.cc",
685     ]
686     set_sources_assignment_filter(sources_assignment_filter)
688     deps += [
689       ":base_jni_headers",
690       "//third_party/ashmem",
691       "//third_party/android_tools:cpu_features",
692     ]
694     # logging.cc uses the Android logging library.
695     libs = [ "log" ]
696   }
698   if (is_chromeos) {
699     sources -= [ "power_monitor/power_monitor_device_source_posix.cc" ]
700   }
702   if (is_nacl) {
703     # We reset sources_assignment_filter in order to explicitly include
704     # the linux file (which would otherwise be filtered out).
705     set_sources_assignment_filter([])
706     sources += [
707       "files/file_path_watcher_stub.cc",
708       "sync_socket_nacl.cc",
709       "threading/platform_thread_linux.cc",
710     ]
711     set_sources_assignment_filter(sources_assignment_filter)
713     sources -= [
714       "allocator/type_profiler_control.cc",
715       "allocator/type_profiler_control.h",
716       "async_socket_io_handler_posix.cc",
717       "cpu.cc",
718       "files/file_enumerator_posix.cc",
719       "files/file_proxy.cc",
720       "files/file_util.cc",
721       "files/file_util_posix.cc",
722       "files/file_util_proxy.cc",
723       "files/important_file_writer.cc",
724       "files/important_file_writer.h",
725       "files/scoped_temp_dir.cc",
726       "message_loop/message_pump_libevent.cc",
727       "native_library_posix.cc",
728       "path_service.cc",
729       "rand_util_posix.cc",
730       "scoped_native_library.cc",
731       "sync_socket_posix.cc",
732       "sys_info.cc",
733       "sys_info_posix.cc",
734     ]
735   } else {
736     # Remove NaCl stuff.
737     sources -= [
738       "os_compat_nacl.cc",
739       "os_compat_nacl.h",
740       "rand_util_nacl.cc",
741     ]
742   }
744   # Windows.
745   if (is_win) {
746     sources -= [
747       "message_loop/message_pump_libevent.cc",
748       "strings/string16.cc",
750       # Not using sha1_win.cc because it may have caused a
751       # regression to page cycler moz.
752       "sha1_win.cc",
753     ]
755     # Required for base/stack_trace_win.cc to symbolize correctly.
756     data += [ "$root_build_dir/dbghelp.dll" ]
758     if (is_component_build) {
759       # Copy the VS runtime DLLs into the isolate so that they don't have to be
760       # preinstalled on the target machine. The debug runtimes have a "d" at
761       # the end.
762       if (is_debug) {
763         vcrt_suffix = "d"
764       } else {
765         vcrt_suffix = ""
766       }
768       # These runtime files are copied to the output directory by the
769       # vs_toolchain script that runs as part of toolchain configuration.
770       data += [
771         "$root_out_dir/msvcp120${vcrt_suffix}.dll",
772         "$root_out_dir/msvcr120${vcrt_suffix}.dll",
773       ]
774       if (is_asan) {
775         data += [ "//third_party/llvm-build/Release+Asserts/lib/clang/3.8.0/lib/windows/clang_rt.asan_dynamic-i386.dll" ]
776       }
777     }
779     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
780     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
782     libs = [
783       "cfgmgr32.lib",
784       "netapi32.lib",
785       "powrprof.lib",
786       "setupapi.lib",
787     ]
788     all_dependent_configs = [ ":base_win_linker_flags" ]
789   } else if (!is_nacl) {
790     # Non-Windows.
791     deps += [ "//third_party/libevent" ]
792   }
794   # Mac.
795   if (is_mac || is_ios) {
796     # Common Desktop / iOS excludes
797     sources -= [
798       "native_library_posix.cc",
799       "strings/sys_string_conversions_posix.cc",
800       "threading/platform_thread_internal_posix.cc",
801     ]
803     if (is_asan) {
804       # TODO(GYP) hook up asan on Mac. GYP has this extra dylib:
805       #data += [ "$root_out_dir/libclang_rt.asan_osx_dynamic.dylib" ]
806     }
808     if (is_ios) {
809       sources -= [
810         "files/file_path_watcher_fsevents.cc",
811         "files/file_path_watcher_fsevents.h",
812       ]
813     }
814   } else {
815     # Non-Mac.
816     sources -= [
817       "files/file_path_watcher_fsevents.cc",
818       "files/file_path_watcher_fsevents.h",
819       "files/file_path_watcher_kqueue.cc",
820       "files/file_path_watcher_kqueue.h",
821     ]
822   }
824   # Linux.
825   if (is_linux) {
826     if (is_asan || is_lsan || is_msan || is_tsan) {
827       # For llvm-sanitizer.
828       data += [ "//third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6" ]
829     }
831     # TODO(brettw) this will need to be parameterized at some point.
832     linux_configs = []
833     if (use_glib) {
834       linux_configs += [ "//build/config/linux:glib" ]
835     }
837     configs += linux_configs
838     all_dependent_configs = linux_configs
840     # These dependencies are not required on Android, and in the case
841     # of xdg_mime must be excluded due to licensing restrictions.
842     deps += [
843       "//base/third_party/xdg_mime",
844       "//base/third_party/xdg_user_dirs",
845     ]
846   } else {
847     # Non-Linux.
848     sources -= [
849       "nix/mime_util_xdg.cc",
850       "nix/mime_util_xdg.h",
851       "nix/xdg_util.cc",
852       "nix/xdg_util.h",
853     ]
855     if (!is_android) {
856       sources -= [
857         "linux_util.cc",
858         "linux_util.h",
859       ]
860     }
861   }
863   # iOS
864   if (is_ios) {
865     set_sources_assignment_filter([])
867     sources += [
868       "atomicops_internals_mac.h",
869       "base_paths_mac.h",
870       "base_paths_mac.mm",
871       "file_version_info_mac.h",
872       "file_version_info_mac.mm",
873       "files/file_util_mac.mm",
874       "mac/bundle_locations.h",
875       "mac/bundle_locations.mm",
876       "mac/call_with_eh_frame.cc",
877       "mac/call_with_eh_frame.h",
878       "mac/foundation_util.h",
879       "mac/foundation_util.mm",
880       "mac/mac_logging.cc",
881       "mac/mac_logging.h",
882       "mac/mach_logging.cc",
883       "mac/mach_logging.h",
884       "mac/objc_property_releaser.h",
885       "mac/objc_property_releaser.mm",
886       "mac/scoped_mach_port.cc",
887       "mac/scoped_mach_port.h",
888       "mac/scoped_mach_vm.cc",
889       "mac/scoped_mach_vm.h",
890       "mac/scoped_nsautorelease_pool.h",
891       "mac/scoped_nsautorelease_pool.mm",
892       "mac/scoped_nsobject.h",
893       "mac/scoped_objc_class_swizzler.h",
894       "mac/scoped_objc_class_swizzler.mm",
895       "message_loop/message_pump_mac.h",
896       "message_loop/message_pump_mac.mm",
897       "strings/sys_string_conversions_mac.mm",
898       "threading/platform_thread_mac.mm",
899       "time/time_mac.cc",
900     ]
902     set_sources_assignment_filter(sources_assignment_filter)
903   }
905   if (!use_glib) {
906     sources -= [
907       "message_loop/message_pump_glib.cc",
908       "message_loop/message_pump_glib.h",
909     ]
910   }
912   if (is_asan || is_lsan || is_msan || is_tsan) {
913     data += [ "//tools/valgrind/asan/" ]
914     if (is_win) {
915       data +=
916           [ "//third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer.exe" ]
917     } else {
918       data += [ "//third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer" ]
919     }
920   }
922   configs += [ "//build/config/compiler:wexit_time_destructors" ]
923   if (!is_debug) {
924     configs -= [ "//build/config/compiler:optimize" ]
925     configs += [ "//build/config/compiler:optimize_max" ]
926   }
928   allow_circular_includes_from = public_deps
931 # This is the subset of files from base that should not be used with a dynamic
932 # library. Note that this library cannot depend on base because base depends on
933 # base_static.
934 source_set("base_static") {
935   sources = [
936     "base_switches.cc",
937     "base_switches.h",
938     "win/pe_image.cc",
939     "win/pe_image.h",
940   ]
942   if (!is_debug) {
943     configs -= [ "//build/config/compiler:optimize" ]
944     configs += [ "//build/config/compiler:optimize_max" ]
945   }
948 component("i18n") {
949   output_name = "base_i18n"
950   sources = [
951     "i18n/base_i18n_export.h",
952     "i18n/bidi_line_iterator.cc",
953     "i18n/bidi_line_iterator.h",
954     "i18n/break_iterator.cc",
955     "i18n/break_iterator.h",
956     "i18n/case_conversion.cc",
957     "i18n/case_conversion.h",
958     "i18n/char_iterator.cc",
959     "i18n/char_iterator.h",
960     "i18n/file_util_icu.cc",
961     "i18n/file_util_icu.h",
962     "i18n/i18n_constants.cc",
963     "i18n/i18n_constants.h",
964     "i18n/icu_encoding_detection.cc",
965     "i18n/icu_encoding_detection.h",
966     "i18n/icu_string_conversions.cc",
967     "i18n/icu_string_conversions.h",
968     "i18n/icu_util.cc",
969     "i18n/icu_util.h",
970     "i18n/number_formatting.cc",
971     "i18n/number_formatting.h",
972     "i18n/rtl.cc",
973     "i18n/rtl.h",
974     "i18n/streaming_utf8_validator.cc",
975     "i18n/streaming_utf8_validator.h",
976     "i18n/string_compare.cc",
977     "i18n/string_compare.h",
978     "i18n/string_search.cc",
979     "i18n/string_search.h",
980     "i18n/time_formatting.cc",
981     "i18n/time_formatting.h",
982     "i18n/timezone.cc",
983     "i18n/timezone.h",
984     "i18n/utf8_validator_tables.cc",
985     "i18n/utf8_validator_tables.h",
986   ]
987   defines = [ "BASE_I18N_IMPLEMENTATION" ]
988   configs += [ "//build/config/compiler:wexit_time_destructors" ]
989   deps = [
990     ":base",
991     "//base/third_party/dynamic_annotations",
992     "//third_party/icu",
993   ]
995   if (!is_debug) {
996     configs -= [ "//build/config/compiler:optimize" ]
997     configs += [ "//build/config/compiler:optimize_max" ]
998   }
1000   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1001   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1004 if (is_win || (is_linux && !is_chromeos)) {
1005   # TODO(GYP): Figure out which of these work and are needed on other platforms.
1006   test("base_perftests") {
1007     sources = [
1008       "message_loop/message_pump_perftest.cc",
1010       # "test/run_all_unittests.cc",
1011       "threading/thread_perftest.cc",
1012     ]
1013     deps = [
1014       ":base",
1015       "//base/test:test_support",
1016       "//base/test:test_support_perf",
1017       "//testing/perf",
1018       "//testing/gtest",
1019     ]
1021     if (is_android) {
1022       deps += [ "//testing/android/native_test:native_test_native_code" ]
1023     }
1024   }
1026   test("base_i18n_perftests") {
1027     sources = [
1028       "i18n/streaming_utf8_validator_perftest.cc",
1029     ]
1030     deps = [
1031       ":base",
1032       ":i18n",
1033       "//base/test:test_support",
1034       "//base/test:test_support_perf",
1035       "//testing/gtest",
1036     ]
1037   }
1039   if (!is_ios) {
1040     executable("build_utf8_validator_tables") {
1041       sources = [
1042         "i18n/build_utf8_validator_tables.cc",
1043       ]
1044       deps = [
1045         ":base",
1046         "//third_party/icu:icuuc",
1047       ]
1048     }
1050     executable("check_example") {
1051       sources = [
1052         "check_example.cc",
1053       ]
1054       deps = [
1055         ":base",
1056       ]
1057     }
1058   }
1061 component("prefs") {
1062   sources = [
1063     "prefs/base_prefs_export.h",
1064     "prefs/default_pref_store.cc",
1065     "prefs/default_pref_store.h",
1066     "prefs/json_pref_store.cc",
1067     "prefs/json_pref_store.h",
1068     "prefs/overlay_user_pref_store.cc",
1069     "prefs/overlay_user_pref_store.h",
1070     "prefs/persistent_pref_store.h",
1071     "prefs/pref_change_registrar.cc",
1072     "prefs/pref_change_registrar.h",
1073     "prefs/pref_filter.h",
1074     "prefs/pref_member.cc",
1075     "prefs/pref_member.h",
1076     "prefs/pref_notifier.h",
1077     "prefs/pref_notifier_impl.cc",
1078     "prefs/pref_notifier_impl.h",
1079     "prefs/pref_observer.h",
1080     "prefs/pref_registry.cc",
1081     "prefs/pref_registry.h",
1082     "prefs/pref_registry_simple.cc",
1083     "prefs/pref_registry_simple.h",
1084     "prefs/pref_service.cc",
1085     "prefs/pref_service.h",
1086     "prefs/pref_service_factory.cc",
1087     "prefs/pref_service_factory.h",
1088     "prefs/pref_store.cc",
1089     "prefs/pref_store.h",
1090     "prefs/pref_value_map.cc",
1091     "prefs/pref_value_map.h",
1092     "prefs/pref_value_store.cc",
1093     "prefs/pref_value_store.h",
1094     "prefs/scoped_user_pref_update.cc",
1095     "prefs/scoped_user_pref_update.h",
1096     "prefs/value_map_pref_store.cc",
1097     "prefs/value_map_pref_store.h",
1098     "prefs/writeable_pref_store.h",
1099   ]
1101   defines = [ "BASE_PREFS_IMPLEMENTATION" ]
1103   deps = [
1104     ":base",
1105   ]
1107   if (!is_debug) {
1108     configs -= [ "//build/config/compiler:optimize" ]
1109     configs += [ "//build/config/compiler:optimize_max" ]
1110   }
1113 source_set("prefs_test_support") {
1114   testonly = true
1115   sources = [
1116     "prefs/mock_pref_change_callback.cc",
1117     "prefs/mock_pref_change_callback.h",
1118     "prefs/pref_store_observer_mock.cc",
1119     "prefs/pref_store_observer_mock.h",
1120     "prefs/testing_pref_service.cc",
1121     "prefs/testing_pref_service.h",
1122     "prefs/testing_pref_store.cc",
1123     "prefs/testing_pref_store.h",
1124   ]
1126   public_deps = [
1127     ":prefs",
1128   ]
1129   deps = [
1130     ":base",
1131     "//testing/gmock",
1132     "//testing/gtest",
1133   ]
1136 source_set("message_loop_tests") {
1137   testonly = true
1138   sources = [
1139     "message_loop/message_loop_test.cc",
1140     "message_loop/message_loop_test.h",
1141   ]
1143   deps = [
1144     ":base",
1145     "//testing/gtest",
1146   ]
1149 if (is_win) {
1150   # Target to manually rebuild pe_image_test.dll which is checked into
1151   # base/test/data/pe_image.
1152   shared_library("pe_image_test") {
1153     sources = [
1154       "win/pe_image_test.cc",
1155     ]
1156     ldflags = [
1157       "/DELAYLOAD:cfgmgr32.dll",
1158       "/DELAYLOAD:shell32.dll",
1159       "/SUBSYSTEM:WINDOWS",
1160     ]
1161     libs = [
1162       "cfgmgr32.lib",
1163       "shell32.lib",
1164     ]
1165   }
1168 # TODO(GYP): Delete this after we've converted everything to GN.
1169 # The _run targets exist only for compatibility w/ GYP.
1170 group("base_unittests_run") {
1171   testonly = true
1172   deps = [
1173     ":base_unittests",
1174   ]
1177 test("base_unittests") {
1178   sources = [
1179     "android/application_status_listener_unittest.cc",
1180     "android/content_uri_utils_unittest.cc",
1181     "android/jni_android_unittest.cc",
1182     "android/jni_array_unittest.cc",
1183     "android/jni_string_unittest.cc",
1184     "android/library_loader/library_prefetcher_unittest.cc",
1185     "android/path_utils_unittest.cc",
1186     "android/scoped_java_ref_unittest.cc",
1187     "android/sys_utils_unittest.cc",
1188     "async_socket_io_handler_unittest.cc",
1189     "at_exit_unittest.cc",
1190     "atomicops_unittest.cc",
1191     "barrier_closure_unittest.cc",
1192     "base64_unittest.cc",
1193     "big_endian_unittest.cc",
1194     "bind_unittest.cc",
1195     "bind_unittest.nc",
1196     "bits_unittest.cc",
1197     "build_time_unittest.cc",
1198     "callback_helpers_unittest.cc",
1199     "callback_list_unittest.cc",
1200     "callback_list_unittest.nc",
1201     "callback_unittest.cc",
1202     "callback_unittest.nc",
1203     "cancelable_callback_unittest.cc",
1204     "command_line_unittest.cc",
1205     "containers/adapters_unittest.cc",
1206     "containers/hash_tables_unittest.cc",
1207     "containers/linked_list_unittest.cc",
1208     "containers/mru_cache_unittest.cc",
1209     "containers/scoped_ptr_hash_map_unittest.cc",
1210     "containers/scoped_ptr_map_unittest.cc",
1211     "containers/small_map_unittest.cc",
1212     "containers/stack_container_unittest.cc",
1213     "cpu_unittest.cc",
1214     "debug/crash_logging_unittest.cc",
1215     "debug/debugger_unittest.cc",
1216     "debug/leak_tracker_unittest.cc",
1217     "debug/proc_maps_linux_unittest.cc",
1218     "debug/stack_trace_unittest.cc",
1219     "debug/task_annotator_unittest.cc",
1220     "deferred_sequenced_task_runner_unittest.cc",
1221     "environment_unittest.cc",
1222     "file_version_info_unittest.cc",
1223     "files/dir_reader_posix_unittest.cc",
1224     "files/file_path_unittest.cc",
1225     "files/file_path_watcher_unittest.cc",
1226     "files/file_proxy_unittest.cc",
1227     "files/file_unittest.cc",
1228     "files/file_util_proxy_unittest.cc",
1229     "files/file_util_unittest.cc",
1230     "files/important_file_writer_unittest.cc",
1231     "files/scoped_temp_dir_unittest.cc",
1232     "gmock_unittest.cc",
1233     "guid_unittest.cc",
1234     "hash_unittest.cc",
1235     "i18n/break_iterator_unittest.cc",
1236     "i18n/case_conversion_unittest.cc",
1237     "i18n/char_iterator_unittest.cc",
1238     "i18n/file_util_icu_unittest.cc",
1239     "i18n/icu_string_conversions_unittest.cc",
1240     "i18n/number_formatting_unittest.cc",
1241     "i18n/rtl_unittest.cc",
1242     "i18n/streaming_utf8_validator_unittest.cc",
1243     "i18n/string_search_unittest.cc",
1244     "i18n/time_formatting_unittest.cc",
1245     "i18n/timezone_unittest.cc",
1246     "id_map_unittest.cc",
1247     "ios/device_util_unittest.mm",
1248     "ios/weak_nsobject_unittest.mm",
1249     "json/json_parser_unittest.cc",
1250     "json/json_reader_unittest.cc",
1251     "json/json_value_converter_unittest.cc",
1252     "json/json_value_serializer_unittest.cc",
1253     "json/json_writer_unittest.cc",
1254     "json/string_escape_unittest.cc",
1255     "lazy_instance_unittest.cc",
1256     "logging_unittest.cc",
1257     "mac/bind_objc_block_unittest.mm",
1258     "mac/call_with_eh_frame_unittest.mm",
1259     "mac/dispatch_source_mach_unittest.cc",
1260     "mac/foundation_util_unittest.mm",
1261     "mac/libdispatch_task_runner_unittest.cc",
1262     "mac/mac_util_unittest.mm",
1263     "mac/objc_property_releaser_unittest.mm",
1264     "mac/scoped_nsobject_unittest.mm",
1265     "mac/scoped_objc_class_swizzler_unittest.mm",
1266     "mac/scoped_sending_event_unittest.mm",
1267     "md5_unittest.cc",
1268     "memory/aligned_memory_unittest.cc",
1269     "memory/discardable_shared_memory_unittest.cc",
1270     "memory/linked_ptr_unittest.cc",
1271     "memory/memory_pressure_monitor_chromeos_unittest.cc",
1272     "memory/memory_pressure_monitor_win_unittest.cc",
1273     "memory/ref_counted_memory_unittest.cc",
1274     "memory/ref_counted_unittest.cc",
1275     "memory/scoped_ptr_unittest.cc",
1276     "memory/scoped_ptr_unittest.nc",
1277     "memory/scoped_vector_unittest.cc",
1278     "memory/shared_memory_unittest.cc",
1279     "memory/singleton_unittest.cc",
1280     "memory/weak_ptr_unittest.cc",
1281     "memory/weak_ptr_unittest.nc",
1282     "message_loop/message_loop_task_runner_unittest.cc",
1283     "message_loop/message_loop_unittest.cc",
1284     "message_loop/message_pump_glib_unittest.cc",
1285     "message_loop/message_pump_io_ios_unittest.cc",
1286     "metrics/bucket_ranges_unittest.cc",
1287     "metrics/field_trial_unittest.cc",
1288     "metrics/histogram_base_unittest.cc",
1289     "metrics/histogram_delta_serialization_unittest.cc",
1290     "metrics/histogram_snapshot_manager_unittest.cc",
1291     "metrics/histogram_unittest.cc",
1292     "metrics/sample_map_unittest.cc",
1293     "metrics/sample_vector_unittest.cc",
1294     "metrics/sparse_histogram_unittest.cc",
1295     "metrics/statistics_recorder_unittest.cc",
1296     "move_unittest.cc",
1297     "numerics/safe_numerics_unittest.cc",
1298     "observer_list_unittest.cc",
1299     "os_compat_android_unittest.cc",
1300     "path_service_unittest.cc",
1301     "pickle_unittest.cc",
1302     "posix/file_descriptor_shuffle_unittest.cc",
1303     "posix/unix_domain_socket_linux_unittest.cc",
1304     "power_monitor/power_monitor_unittest.cc",
1305     "prefs/default_pref_store_unittest.cc",
1306     "prefs/json_pref_store_unittest.cc",
1307     "prefs/overlay_user_pref_store_unittest.cc",
1308     "prefs/pref_change_registrar_unittest.cc",
1309     "prefs/pref_member_unittest.cc",
1310     "prefs/pref_notifier_impl_unittest.cc",
1311     "prefs/pref_service_unittest.cc",
1312     "prefs/pref_value_map_unittest.cc",
1313     "prefs/pref_value_store_unittest.cc",
1314     "prefs/scoped_user_pref_update_unittest.cc",
1315     "process/memory_unittest.cc",
1316     "process/memory_unittest_mac.h",
1317     "process/memory_unittest_mac.mm",
1318     "process/process_metrics_unittest.cc",
1319     "process/process_metrics_unittest_ios.cc",
1320     "process/process_unittest.cc",
1321     "process/process_util_unittest.cc",
1322     "process/process_util_unittest_ios.cc",
1323     "profiler/stack_sampling_profiler_unittest.cc",
1324     "profiler/tracked_time_unittest.cc",
1325     "rand_util_unittest.cc",
1326     "scoped_clear_errno_unittest.cc",
1327     "scoped_generic_unittest.cc",
1328     "scoped_native_library_unittest.cc",
1329     "security_unittest.cc",
1330     "sequence_checker_unittest.cc",
1331     "sha1_unittest.cc",
1332     "stl_util_unittest.cc",
1333     "strings/nullable_string16_unittest.cc",
1334     "strings/pattern_unittest.cc",
1335     "strings/safe_sprintf_unittest.cc",
1336     "strings/string16_unittest.cc",
1337     "strings/string_number_conversions_unittest.cc",
1338     "strings/string_piece_unittest.cc",
1339     "strings/string_split_unittest.cc",
1340     "strings/string_tokenizer_unittest.cc",
1341     "strings/string_util_unittest.cc",
1342     "strings/stringize_macros_unittest.cc",
1343     "strings/stringprintf_unittest.cc",
1344     "strings/sys_string_conversions_mac_unittest.mm",
1345     "strings/sys_string_conversions_unittest.cc",
1346     "strings/utf_offset_string_conversions_unittest.cc",
1347     "strings/utf_string_conversions_unittest.cc",
1348     "supports_user_data_unittest.cc",
1349     "sync_socket_unittest.cc",
1350     "synchronization/cancellation_flag_unittest.cc",
1351     "synchronization/condition_variable_unittest.cc",
1352     "synchronization/lock_unittest.cc",
1353     "synchronization/waitable_event_unittest.cc",
1354     "synchronization/waitable_event_watcher_unittest.cc",
1355     "sys_info_unittest.cc",
1356     "system_monitor/system_monitor_unittest.cc",
1357     "task/cancelable_task_tracker_unittest.cc",
1358     "task_runner_util_unittest.cc",
1359     "template_util_unittest.cc",
1360     "test/histogram_tester_unittest.cc",
1361     "test/test_reg_util_win_unittest.cc",
1362     "test/trace_event_analyzer_unittest.cc",
1363     "test/user_action_tester_unittest.cc",
1364     "threading/non_thread_safe_unittest.cc",
1365     "threading/platform_thread_unittest.cc",
1366     "threading/sequenced_worker_pool_unittest.cc",
1367     "threading/simple_thread_unittest.cc",
1368     "threading/thread_checker_unittest.cc",
1369     "threading/thread_collision_warner_unittest.cc",
1370     "threading/thread_id_name_manager_unittest.cc",
1371     "threading/thread_local_storage_unittest.cc",
1372     "threading/thread_local_unittest.cc",
1373     "threading/thread_unittest.cc",
1374     "threading/watchdog_unittest.cc",
1375     "threading/worker_pool_posix_unittest.cc",
1376     "threading/worker_pool_unittest.cc",
1377     "time/pr_time_unittest.cc",
1378     "time/time_unittest.cc",
1379     "time/time_win_unittest.cc",
1380     "timer/hi_res_timer_manager_unittest.cc",
1381     "timer/mock_timer_unittest.cc",
1382     "timer/timer_unittest.cc",
1383     "tools_sanity_unittest.cc",
1384     "tracked_objects_unittest.cc",
1385     "tuple_unittest.cc",
1386     "values_unittest.cc",
1387     "version_unittest.cc",
1388     "vlog_unittest.cc",
1389     "win/dllmain.cc",
1390     "win/enum_variant_unittest.cc",
1391     "win/event_trace_consumer_unittest.cc",
1392     "win/event_trace_controller_unittest.cc",
1393     "win/event_trace_provider_unittest.cc",
1394     "win/i18n_unittest.cc",
1395     "win/iunknown_impl_unittest.cc",
1396     "win/message_window_unittest.cc",
1397     "win/object_watcher_unittest.cc",
1398     "win/pe_image_unittest.cc",
1399     "win/registry_unittest.cc",
1400     "win/scoped_bstr_unittest.cc",
1401     "win/scoped_comptr_unittest.cc",
1402     "win/scoped_process_information_unittest.cc",
1403     "win/scoped_variant_unittest.cc",
1404     "win/shortcut_unittest.cc",
1405     "win/startup_information_unittest.cc",
1406     "win/win_util_unittest.cc",
1407     "win/wrapped_window_proc_unittest.cc",
1408   ]
1410   deps = [
1411     ":base",
1412     ":i18n",
1413     ":message_loop_tests",
1414     ":prefs",
1415     ":prefs_test_support",
1416     "//base/allocator",
1417     "//base/test:run_all_unittests",
1418     "//base/test:test_support",
1419     "//base/third_party/dynamic_annotations",
1420     "//base/trace_event:trace_event_unittests",
1421     "//testing/gmock",
1422     "//testing/gtest",
1423     "//third_party/icu",
1424   ]
1426   data = [
1427     "test/data/",
1428   ]
1430   # Allow more direct string conversions on platforms with native utf8
1431   # strings
1432   if (is_mac || is_ios || is_chromeos) {
1433     defines = [ "SYSTEM_NATIVE_UTF8" ]
1434   }
1436   if (is_android) {
1437     apk_deps = [
1438       ":base_java",
1439       ":base_java_unittest_support",
1440     ]
1442     # TODO(brettw) I think this should not be here, we should not be using
1443     # isolate files.
1444     isolate_file = "base_unittests.isolate"
1445   }
1447   if (is_ios) {
1448     sources -= [
1449       "process/memory_unittest.cc",
1450       "process/process_unittest.cc",
1451       "process/process_util_unittest.cc",
1452     ]
1454     # Pull in specific Mac files for iOS (which have been filtered out by file
1455     # name rules).
1456     set_sources_assignment_filter([])
1457     sources += [
1458       "mac/bind_objc_block_unittest.mm",
1459       "mac/foundation_util_unittest.mm",
1460       "mac/objc_property_releaser_unittest.mm",
1461       "mac/scoped_nsobject_unittest.mm",
1462       "sys_string_conversions_mac_unittest.mm",
1463     ]
1464     set_sources_assignment_filter(sources_assignment_filter)
1466     # TODO(GYP): dep on copy_test_data_ios action.
1467   }
1469   if (is_linux) {
1470     sources -= [ "file_version_info_unittest.cc" ]
1471     sources += [ "nix/xdg_util_unittest.cc" ]
1472     deps += [ "//base/test:malloc_wrapper" ]
1474     if (use_glib) {
1475       configs += [ "//build/config/linux:glib" ]
1476     }
1477   }
1479   if (!is_linux || use_ozone) {
1480     sources -= [ "message_loop/message_pump_glib_unittest.cc" ]
1481   }
1483   if (is_posix || is_ios) {
1484     sources += [ "message_loop/message_pump_libevent_unittest.cc" ]
1485     deps += [ "//third_party/libevent" ]
1486   }
1488   if (is_android) {
1489     deps += [ "//testing/android/native_test:native_test_native_code" ]
1490     set_sources_assignment_filter([])
1491     sources += [ "debug/proc_maps_linux_unittest.cc" ]
1492     set_sources_assignment_filter(sources_assignment_filter)
1493   }
1495   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1496   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1498   # Symbols for crashes when running tests on swarming.
1499   if (symbol_level > 0) {
1500     if (is_win) {
1501       data += [ "$root_out_dir/base_unittests.exe.pdb" ]
1502     } else if (is_mac) {
1503       data += [ "$root_out_dir/base_unittests.dSYM/" ]
1504     }
1505   }
1508 if (is_android) {
1509   # GYP: //base.gyp:base_jni_headers
1510   generate_jni("base_jni_headers") {
1511     sources = [
1512       "android/java/src/org/chromium/base/AnimationFrameTimeHistogram.java",
1513       "android/java/src/org/chromium/base/ApkAssets.java",
1514       "android/java/src/org/chromium/base/ApplicationStatus.java",
1515       "android/java/src/org/chromium/base/BuildInfo.java",
1516       "android/java/src/org/chromium/base/CommandLine.java",
1517       "android/java/src/org/chromium/base/ContentUriUtils.java",
1518       "android/java/src/org/chromium/base/CpuFeatures.java",
1519       "android/java/src/org/chromium/base/EventLog.java",
1520       "android/java/src/org/chromium/base/FieldTrialList.java",
1521       "android/java/src/org/chromium/base/ImportantFileWriterAndroid.java",
1522       "android/java/src/org/chromium/base/JNIUtils.java",
1523       "android/java/src/org/chromium/base/JavaHandlerThread.java",
1524       "android/java/src/org/chromium/base/LocaleUtils.java",
1525       "android/java/src/org/chromium/base/MemoryPressureListener.java",
1526       "android/java/src/org/chromium/base/PathService.java",
1527       "android/java/src/org/chromium/base/PathUtils.java",
1528       "android/java/src/org/chromium/base/PowerMonitor.java",
1529       "android/java/src/org/chromium/base/SysUtils.java",
1530       "android/java/src/org/chromium/base/SystemMessageHandler.java",
1531       "android/java/src/org/chromium/base/ThreadUtils.java",
1532       "android/java/src/org/chromium/base/TraceEvent.java",
1533       "android/java/src/org/chromium/base/library_loader/LibraryLoader.java",
1534       "android/java/src/org/chromium/base/metrics/RecordHistogram.java",
1535       "android/java/src/org/chromium/base/metrics/RecordUserAction.java",
1536     ]
1538     deps = [
1539       ":android_runtime_jni_headers",
1540     ]
1542     jni_package = "base"
1543   }
1545   # GYP: //base.gyp:android_runtime_jni_headers
1546   generate_jar_jni("android_runtime_jni_headers") {
1547     jni_package = "base"
1548     classes = [ "java/lang/Runtime.class" ]
1549   }
1551   # GYP: //base.gyp:base_java
1552   android_library("base_java") {
1553     srcjar_deps = [
1554       ":base_android_java_enums_srcjar",
1555       ":base_native_libraries_gen",
1556     ]
1558     deps = [
1559       "//third_party/jsr-305:jsr_305_javalib",
1560     ]
1562     DEPRECATED_java_in_dir = "android/java/src"
1564     # A new version of NativeLibraries.java (with the actual correct values)
1565     # will be created when creating an apk.
1566     jar_excluded_patterns = [
1567       "*/NativeLibraries.class",
1568       "*/NativeLibraries##*.class",
1569     ]
1570   }
1572   # GYP: //base.gyp:base_javatests
1573   android_library("base_javatests") {
1574     deps = [
1575       ":base_java",
1576       ":base_java_test_support",
1577     ]
1578     DEPRECATED_java_in_dir = "android/javatests/src"
1579   }
1581   # GYP: //base.gyp:base_java_test_support
1582   android_library("base_java_test_support") {
1583     deps = [
1584       ":base_java",
1585       "//testing/android/reporter:reporter_java",
1586     ]
1587     DEPRECATED_java_in_dir = "test/android/javatests/src"
1588   }
1590   # GYP: //base.gyp:base_junit_tests
1591   junit_binary("base_junit_tests") {
1592     java_files = [ "android/junit/src/org/chromium/base/LogTest.java" ]
1593     deps = [
1594       ":base_java",
1595       ":base_java_test_support",
1596     ]
1597   }
1599   # GYP: //base.gyp:base_java_application_state
1600   # GYP: //base.gyp:base_java_library_load_from_apk_status_codes
1601   # GYP: //base.gyp:base_java_library_process_type
1602   # GYP: //base.gyp:base_java_memory_pressure_level
1603   java_cpp_enum("base_android_java_enums_srcjar") {
1604     sources = [
1605       "android/application_status_listener.h",
1606       "android/library_loader/library_load_from_apk_status_codes.h",
1607       "android/library_loader/library_loader_hooks.h",
1608       "memory/memory_pressure_listener.h",
1609     ]
1610     outputs = [
1611       "org/chromium/base/ApplicationState.java",
1612       "org/chromium/base/library_loader/LibraryLoadFromApkStatusCodes.java",
1613       "org/chromium/base/library_loader/LibraryProcessType.java",
1614       "org/chromium/base/MemoryPressureLevel.java",
1615     ]
1616   }
1618   # GYP: //base/base.gyp:base_native_libraries_gen
1619   java_cpp_template("base_native_libraries_gen") {
1620     sources = [
1621       "android/java/templates/NativeLibraries.template",
1622     ]
1623     package_name = "org/chromium/base/library_loader"
1624   }
1626   # GYP: //base.gyp:base_java_unittest_support
1627   android_library("base_java_unittest_support") {
1628     deps = [
1629       ":base_java",
1630     ]
1631     java_files =
1632         [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1633   }