hunspell: Cleanup to fix the header include guards under google/ directory.
[chromium-blink-merge.git] / base / BUILD.gn
blobccb580f1dab092a83d7307956864eabd033b4c53
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/crb_protocol_observers.h",
250     "ios/crb_protocol_observers.mm",
251     "ios/device_util.h",
252     "ios/device_util.mm",
253     "ios/ios_util.h",
254     "ios/ios_util.mm",
255     "ios/ns_error_util.h",
256     "ios/ns_error_util.mm",
257     "ios/scoped_critical_action.h",
258     "ios/scoped_critical_action.mm",
259     "ios/weak_nsobject.h",
260     "ios/weak_nsobject.mm",
261     "lazy_instance.cc",
262     "lazy_instance.h",
263     "linux_util.cc",
264     "linux_util.h",
265     "location.cc",
266     "location.h",
267     "logging.cc",
268     "logging.h",
269     "logging_win.cc",
270     "logging_win.h",
271     "mac/authorization_util.h",
272     "mac/authorization_util.mm",
273     "mac/bind_objc_block.h",
274     "mac/bundle_locations.h",
275     "mac/bundle_locations.mm",
276     "mac/call_with_eh_frame.cc",
277     "mac/call_with_eh_frame.h",
278     "mac/call_with_eh_frame_asm.S",
279     "mac/cocoa_protocols.h",
280     "mac/dispatch_source_mach.cc",
281     "mac/dispatch_source_mach.h",
282     "mac/foundation_util.h",
283     "mac/foundation_util.mm",
284     "mac/launch_services_util.cc",
285     "mac/launch_services_util.h",
286     "mac/launchd.cc",
287     "mac/launchd.h",
288     "mac/libdispatch_task_runner.cc",
289     "mac/libdispatch_task_runner.h",
290     "mac/mac_logging.cc",
291     "mac/mac_logging.h",
292     "mac/mac_util.h",
293     "mac/mac_util.mm",
294     "mac/mach_logging.cc",
295     "mac/mach_logging.h",
296     "mac/objc_property_releaser.h",
297     "mac/objc_property_releaser.mm",
298     "mac/os_crash_dumps.cc",
299     "mac/os_crash_dumps.h",
300     "mac/scoped_aedesc.h",
301     "mac/scoped_authorizationref.h",
302     "mac/scoped_block.h",
303     "mac/scoped_cftyperef.h",
304     "mac/scoped_ioobject.h",
305     "mac/scoped_ioplugininterface.h",
306     "mac/scoped_launch_data.h",
307     "mac/scoped_mach_port.cc",
308     "mac/scoped_mach_port.h",
309     "mac/scoped_mach_vm.cc",
310     "mac/scoped_mach_vm.h",
311     "mac/scoped_nsautorelease_pool.h",
312     "mac/scoped_nsautorelease_pool.mm",
313     "mac/scoped_nsobject.h",
314     "mac/scoped_objc_class_swizzler.h",
315     "mac/scoped_objc_class_swizzler.mm",
316     "mac/scoped_sending_event.h",
317     "mac/scoped_sending_event.mm",
318     "mac/sdk_forward_declarations.h",
319     "mac/sdk_forward_declarations.mm",
320     "macros.h",
321     "md5.cc",
322     "md5.h",
323     "message_loop/incoming_task_queue.cc",
324     "message_loop/incoming_task_queue.h",
325     "message_loop/message_loop.cc",
326     "message_loop/message_loop.h",
327     "message_loop/message_loop_task_runner.cc",
328     "message_loop/message_loop_task_runner.h",
329     "message_loop/message_pump.cc",
330     "message_loop/message_pump.h",
331     "message_loop/message_pump_android.cc",
332     "message_loop/message_pump_android.h",
333     "message_loop/message_pump_default.cc",
334     "message_loop/message_pump_default.h",
335     "message_loop/message_pump_glib.cc",
336     "message_loop/message_pump_glib.h",
337     "message_loop/message_pump_io_ios.cc",
338     "message_loop/message_pump_io_ios.h",
339     "message_loop/message_pump_libevent.cc",
340     "message_loop/message_pump_libevent.h",
341     "message_loop/message_pump_mac.h",
342     "message_loop/message_pump_mac.mm",
343     "message_loop/message_pump_win.cc",
344     "message_loop/message_pump_win.h",
345     "move.h",
346     "native_library.h",
347     "native_library_ios.mm",
348     "native_library_mac.mm",
349     "native_library_posix.cc",
350     "native_library_win.cc",
351     "nix/mime_util_xdg.cc",
352     "nix/mime_util_xdg.h",
353     "nix/xdg_util.cc",
354     "nix/xdg_util.h",
355     "numerics/safe_conversions.h",
356     "numerics/safe_conversions_impl.h",
357     "numerics/safe_math.h",
358     "numerics/safe_math_impl.h",
359     "observer_list.h",
360     "observer_list_threadsafe.h",
361     "os_compat_android.cc",
362     "os_compat_android.h",
363     "os_compat_nacl.cc",
364     "os_compat_nacl.h",
365     "path_service.cc",
366     "path_service.h",
367     "pending_task.cc",
368     "pending_task.h",
369     "pickle.cc",
370     "pickle.h",
371     "posix/eintr_wrapper.h",
372     "posix/file_descriptor_shuffle.cc",
373     "posix/global_descriptors.cc",
374     "posix/global_descriptors.h",
375     "posix/safe_strerror.cc",
376     "posix/safe_strerror.h",
377     "posix/unix_domain_socket_linux.cc",
378     "posix/unix_domain_socket_linux.h",
379     "power_monitor/power_monitor.cc",
380     "power_monitor/power_monitor.h",
381     "power_monitor/power_monitor_device_source.cc",
382     "power_monitor/power_monitor_device_source.h",
383     "power_monitor/power_monitor_device_source_android.cc",
384     "power_monitor/power_monitor_device_source_android.h",
385     "power_monitor/power_monitor_device_source_chromeos.cc",
386     "power_monitor/power_monitor_device_source_ios.mm",
387     "power_monitor/power_monitor_device_source_mac.mm",
388     "power_monitor/power_monitor_device_source_posix.cc",
389     "power_monitor/power_monitor_device_source_win.cc",
390     "power_monitor/power_monitor_source.cc",
391     "power_monitor/power_monitor_source.h",
392     "power_monitor/power_observer.h",
393     "profiler/alternate_timer.cc",
394     "profiler/alternate_timer.h",
395     "profiler/native_stack_sampler.cc",
396     "profiler/native_stack_sampler.h",
397     "profiler/native_stack_sampler_posix.cc",
398     "profiler/native_stack_sampler_win.cc",
399     "profiler/scoped_profile.cc",
400     "profiler/scoped_profile.h",
401     "profiler/scoped_tracker.cc",
402     "profiler/scoped_tracker.h",
403     "profiler/stack_sampling_profiler.cc",
404     "profiler/stack_sampling_profiler.h",
405     "profiler/tracked_time.cc",
406     "profiler/tracked_time.h",
407     "rand_util.cc",
408     "rand_util.h",
409     "rand_util_nacl.cc",
410     "rand_util_posix.cc",
411     "rand_util_win.cc",
412     "run_loop.cc",
413     "run_loop.h",
414     "scoped_generic.h",
415     "scoped_native_library.cc",
416     "scoped_native_library.h",
417     "scoped_observer.h",
418     "sequence_checker.h",
419     "sequence_checker_impl.cc",
420     "sequence_checker_impl.h",
421     "sequenced_task_runner.cc",
422     "sequenced_task_runner.h",
423     "sequenced_task_runner_helpers.h",
424     "sha1.h",
425     "sha1_portable.cc",
426     "sha1_win.cc",
427     "single_thread_task_runner.h",
428     "stl_util.h",
429     "strings/latin1_string_conversions.cc",
430     "strings/latin1_string_conversions.h",
431     "strings/nullable_string16.cc",
432     "strings/nullable_string16.h",
433     "strings/pattern.cc",
434     "strings/pattern.h",
435     "strings/safe_sprintf.cc",
436     "strings/safe_sprintf.h",
437     "strings/string16.cc",
438     "strings/string16.h",
439     "strings/string_number_conversions.cc",
440     "strings/string_number_conversions.h",
441     "strings/string_piece.cc",
442     "strings/string_piece.h",
443     "strings/string_split.cc",
444     "strings/string_split.h",
445     "strings/string_tokenizer.h",
446     "strings/string_util.cc",
447     "strings/string_util.h",
448     "strings/string_util_constants.cc",
449     "strings/string_util_posix.h",
450     "strings/string_util_win.h",
451     "strings/stringize_macros.h",
452     "strings/stringprintf.cc",
453     "strings/stringprintf.h",
454     "strings/sys_string_conversions.h",
455     "strings/sys_string_conversions_mac.mm",
456     "strings/sys_string_conversions_posix.cc",
457     "strings/sys_string_conversions_win.cc",
458     "strings/utf_offset_string_conversions.cc",
459     "strings/utf_offset_string_conversions.h",
460     "strings/utf_string_conversion_utils.cc",
461     "strings/utf_string_conversion_utils.h",
462     "strings/utf_string_conversions.cc",
463     "strings/utf_string_conversions.h",
464     "supports_user_data.cc",
465     "supports_user_data.h",
466     "sync_socket.h",
467     "sync_socket_posix.cc",
468     "sync_socket_win.cc",
469     "synchronization/cancellation_flag.cc",
470     "synchronization/cancellation_flag.h",
471     "synchronization/condition_variable.h",
472     "synchronization/condition_variable_posix.cc",
473     "synchronization/condition_variable_win.cc",
474     "synchronization/lock.cc",
475     "synchronization/lock.h",
476     "synchronization/lock_impl.h",
477     "synchronization/lock_impl_posix.cc",
478     "synchronization/lock_impl_win.cc",
479     "synchronization/spin_wait.h",
480     "synchronization/waitable_event.h",
481     "synchronization/waitable_event_posix.cc",
482     "synchronization/waitable_event_watcher.h",
483     "synchronization/waitable_event_watcher_posix.cc",
484     "synchronization/waitable_event_watcher_win.cc",
485     "synchronization/waitable_event_win.cc",
486     "sys_byteorder.h",
487     "sys_info.cc",
488     "sys_info.h",
489     "sys_info_android.cc",
490     "sys_info_chromeos.cc",
491     "sys_info_freebsd.cc",
492     "sys_info_ios.mm",
493     "sys_info_linux.cc",
494     "sys_info_mac.cc",
495     "sys_info_openbsd.cc",
496     "sys_info_posix.cc",
497     "sys_info_win.cc",
498     "system_monitor/system_monitor.cc",
499     "system_monitor/system_monitor.h",
500     "task/cancelable_task_tracker.cc",
501     "task/cancelable_task_tracker.h",
502     "task_runner.cc",
503     "task_runner.h",
504     "task_runner_util.h",
505     "template_util.h",
506     "third_party/dmg_fp/dmg_fp.h",
507     "third_party/dmg_fp/dtoa_wrapper.cc",
508     "third_party/dmg_fp/g_fmt.cc",
509     "third_party/icu/icu_utf.cc",
510     "third_party/icu/icu_utf.h",
511     "third_party/nspr/prtime.cc",
512     "third_party/nspr/prtime.h",
513     "third_party/superfasthash/superfasthash.c",
514     "thread_task_runner_handle.cc",
515     "thread_task_runner_handle.h",
516     "threading/non_thread_safe.h",
517     "threading/non_thread_safe_impl.cc",
518     "threading/non_thread_safe_impl.h",
519     "threading/platform_thread.h",
520     "threading/platform_thread_android.cc",
521     "threading/platform_thread_internal_posix.cc",
522     "threading/platform_thread_internal_posix.h",
523     "threading/platform_thread_linux.cc",
524     "threading/platform_thread_mac.mm",
525     "threading/platform_thread_posix.cc",
526     "threading/platform_thread_win.cc",
527     "threading/post_task_and_reply_impl.cc",
528     "threading/post_task_and_reply_impl.h",
529     "threading/sequenced_worker_pool.cc",
530     "threading/sequenced_worker_pool.h",
531     "threading/simple_thread.cc",
532     "threading/simple_thread.h",
533     "threading/thread.cc",
534     "threading/thread.h",
535     "threading/thread_checker.h",
536     "threading/thread_checker_impl.cc",
537     "threading/thread_checker_impl.h",
538     "threading/thread_collision_warner.cc",
539     "threading/thread_collision_warner.h",
540     "threading/thread_id_name_manager.cc",
541     "threading/thread_id_name_manager.h",
542     "threading/thread_local.h",
543     "threading/thread_local_android.cc",
544     "threading/thread_local_posix.cc",
545     "threading/thread_local_storage.cc",
546     "threading/thread_local_storage.h",
547     "threading/thread_local_storage_posix.cc",
548     "threading/thread_local_storage_win.cc",
549     "threading/thread_local_win.cc",
550     "threading/thread_restrictions.cc",
551     "threading/thread_restrictions.h",
552     "threading/watchdog.cc",
553     "threading/watchdog.h",
554     "threading/worker_pool.cc",
555     "threading/worker_pool.h",
556     "threading/worker_pool_posix.cc",
557     "threading/worker_pool_posix.h",
558     "threading/worker_pool_win.cc",
559     "time/clock.cc",
560     "time/clock.h",
561     "time/default_clock.cc",
562     "time/default_clock.h",
563     "time/default_tick_clock.cc",
564     "time/default_tick_clock.h",
565     "time/tick_clock.cc",
566     "time/tick_clock.h",
567     "time/time.cc",
568     "time/time.h",
569     "time/time_mac.cc",
570     "time/time_posix.cc",
571     "time/time_win.cc",
572     "timer/elapsed_timer.cc",
573     "timer/elapsed_timer.h",
574     "timer/hi_res_timer_manager.h",
575     "timer/hi_res_timer_manager_posix.cc",
576     "timer/hi_res_timer_manager_win.cc",
577     "timer/mock_timer.cc",
578     "timer/mock_timer.h",
579     "timer/timer.cc",
580     "timer/timer.h",
581     "tracked_objects.cc",
582     "tracked_objects.h",
583     "tracking_info.cc",
584     "tracking_info.h",
585     "tuple.h",
586     "value_conversions.cc",
587     "value_conversions.h",
588     "values.cc",
589     "values.h",
590     "version.cc",
591     "version.h",
592     "vlog.cc",
593     "vlog.h",
594     "win/enum_variant.cc",
595     "win/enum_variant.h",
596     "win/event_trace_consumer.h",
597     "win/event_trace_controller.cc",
598     "win/event_trace_controller.h",
599     "win/event_trace_provider.cc",
600     "win/event_trace_provider.h",
601     "win/i18n.cc",
602     "win/i18n.h",
603     "win/iat_patch_function.cc",
604     "win/iat_patch_function.h",
605     "win/iunknown_impl.cc",
606     "win/iunknown_impl.h",
607     "win/message_window.cc",
608     "win/message_window.h",
609     "win/metro.cc",
610     "win/metro.h",
611     "win/object_watcher.cc",
612     "win/object_watcher.h",
613     "win/registry.cc",
614     "win/registry.h",
615     "win/resource_util.cc",
616     "win/resource_util.h",
617     "win/scoped_bstr.cc",
618     "win/scoped_bstr.h",
619     "win/scoped_co_mem.h",
620     "win/scoped_com_initializer.h",
621     "win/scoped_comptr.h",
622     "win/scoped_gdi_object.h",
623     "win/scoped_handle.cc",
624     "win/scoped_handle.h",
625     "win/scoped_hdc.h",
626     "win/scoped_hglobal.h",
627     "win/scoped_process_information.cc",
628     "win/scoped_process_information.h",
629     "win/scoped_propvariant.h",
630     "win/scoped_select_object.h",
631     "win/scoped_variant.cc",
632     "win/scoped_variant.h",
633     "win/shortcut.cc",
634     "win/shortcut.h",
635     "win/startup_information.cc",
636     "win/startup_information.h",
637     "win/win_util.cc",
638     "win/win_util.h",
639     "win/windows_version.cc",
640     "win/windows_version.h",
641     "win/wrapped_window_proc.cc",
642     "win/wrapped_window_proc.h",
643   ]
645   if (is_ios) {
646     sources -= [
647       "message_loop/message_pump_libevent.cc",
648       "message_loop/message_pump_libevent.h",
649     ]
651     set_sources_assignment_filter([])
652     sources += [ "files/file_path_watcher_mac.cc" ]
653     set_sources_assignment_filter(sources_assignment_filter)
654   }
656   sources -= [
657     "sys_info_freebsd.cc",
658     "sys_info_openbsd.cc",
659   ]
661   data = []
663   configs += [
664     ":base_implementation",
665     "//build/config:precompiled_headers",
666   ]
668   deps = [
669     ":base_static",
670     "//base/allocator:allocator_extension_thunks",
671     "//base/third_party/dynamic_annotations",
672     "//third_party/modp_b64",
673   ]
675   public_deps = [
676     ":base_paths",
677     "//base/debug",
678     "//base/json",
679     "//base/memory",
680     "//base/metrics",
681     "//base/process",
682     "//base/trace_event",
683   ]
685   # Allow more direct string conversions on platforms with native utf8
686   # strings
687   if (is_mac || is_ios || is_chromeos) {
688     defines = [ "SYSTEM_NATIVE_UTF8" ]
689   }
691   if (is_android) {
692     sources -= [ "power_monitor/power_monitor_device_source_posix.cc" ]
694     # Android uses some Linux sources, put those back.
695     set_sources_assignment_filter([])
696     sources += [
697       "files/file_path_watcher_linux.cc",
698       "posix/unix_domain_socket_linux.cc",
699       "sys_info_linux.cc",
700     ]
701     set_sources_assignment_filter(sources_assignment_filter)
703     deps += [
704       ":base_jni_headers",
705       "//third_party/ashmem",
706       "//third_party/android_tools:cpu_features",
707     ]
709     # logging.cc uses the Android logging library.
710     libs = [ "log" ]
711   }
713   if (is_chromeos) {
714     sources -= [ "power_monitor/power_monitor_device_source_posix.cc" ]
715   }
717   if (is_nacl) {
718     # We reset sources_assignment_filter in order to explicitly include
719     # the linux file (which would otherwise be filtered out).
720     set_sources_assignment_filter([])
721     sources += [
722       "files/file_path_watcher_stub.cc",
723       "sync_socket_nacl.cc",
724       "threading/platform_thread_linux.cc",
725     ]
726     set_sources_assignment_filter(sources_assignment_filter)
728     sources -= [
729       "allocator/type_profiler_control.cc",
730       "allocator/type_profiler_control.h",
731       "async_socket_io_handler_posix.cc",
732       "cpu.cc",
733       "files/file_enumerator_posix.cc",
734       "files/file_proxy.cc",
735       "files/file_util.cc",
736       "files/file_util_posix.cc",
737       "files/file_util_proxy.cc",
738       "files/important_file_writer.cc",
739       "files/important_file_writer.h",
740       "files/scoped_temp_dir.cc",
741       "message_loop/message_pump_libevent.cc",
742       "native_library_posix.cc",
743       "path_service.cc",
744       "rand_util_posix.cc",
745       "scoped_native_library.cc",
746       "sync_socket_posix.cc",
747       "sys_info.cc",
748       "sys_info_posix.cc",
749     ]
750   } else {
751     # Remove NaCl stuff.
752     sources -= [
753       "os_compat_nacl.cc",
754       "os_compat_nacl.h",
755       "rand_util_nacl.cc",
756     ]
757   }
759   # Windows.
760   if (is_win) {
761     sources -= [
762       "message_loop/message_pump_libevent.cc",
763       "strings/string16.cc",
765       # Not using sha1_win.cc because it may have caused a
766       # regression to page cycler moz.
767       "sha1_win.cc",
768     ]
770     # Required for base/stack_trace_win.cc to symbolize correctly.
771     data += [ "$root_build_dir/dbghelp.dll" ]
773     if (is_component_build) {
774       # Copy the VS runtime DLLs into the isolate so that they don't have to be
775       # preinstalled on the target machine. The debug runtimes have a "d" at
776       # the end.
777       if (is_debug) {
778         vcrt_suffix = "d"
779       } else {
780         vcrt_suffix = ""
781       }
783       # These runtime files are copied to the output directory by the
784       # vs_toolchain script that runs as part of toolchain configuration.
785       data += [
786         "$root_out_dir/msvcp120${vcrt_suffix}.dll",
787         "$root_out_dir/msvcr120${vcrt_suffix}.dll",
788       ]
789       if (is_asan) {
790         data += [ "//third_party/llvm-build/Release+Asserts/lib/clang/3.8.0/lib/windows/clang_rt.asan_dynamic-i386.dll" ]
791       }
792     }
794     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
795     configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
797     libs = [
798       "cfgmgr32.lib",
799       "netapi32.lib",
800       "powrprof.lib",
801       "setupapi.lib",
802     ]
803     all_dependent_configs = [ ":base_win_linker_flags" ]
804   } else if (!is_nacl) {
805     # Non-Windows.
806     deps += [ "//third_party/libevent" ]
807   }
809   # Mac.
810   if (is_mac || is_ios) {
811     # Common Desktop / iOS excludes
812     sources -= [
813       "native_library_posix.cc",
814       "strings/sys_string_conversions_posix.cc",
815       "threading/platform_thread_internal_posix.cc",
816     ]
818     if (is_asan) {
819       # TODO(GYP) hook up asan on Mac. GYP has this extra dylib:
820       #data += [ "$root_out_dir/libclang_rt.asan_osx_dynamic.dylib" ]
821     }
823     if (is_ios) {
824       sources -= [
825         "files/file_path_watcher_fsevents.cc",
826         "files/file_path_watcher_fsevents.h",
827       ]
828     }
829   } else {
830     # Non-Mac.
831     sources -= [
832       "files/file_path_watcher_fsevents.cc",
833       "files/file_path_watcher_fsevents.h",
834       "files/file_path_watcher_kqueue.cc",
835       "files/file_path_watcher_kqueue.h",
836     ]
837   }
839   # Linux.
840   if (is_linux) {
841     if (is_asan || is_lsan || is_msan || is_tsan) {
842       # For llvm-sanitizer.
843       data += [ "//third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6" ]
844     }
846     # TODO(brettw) this will need to be parameterized at some point.
847     linux_configs = []
848     if (use_glib) {
849       linux_configs += [ "//build/config/linux:glib" ]
850     }
852     configs += linux_configs
853     all_dependent_configs = linux_configs
855     # These dependencies are not required on Android, and in the case
856     # of xdg_mime must be excluded due to licensing restrictions.
857     deps += [
858       "//base/third_party/xdg_mime",
859       "//base/third_party/xdg_user_dirs",
860     ]
861   } else {
862     # Non-Linux.
863     sources -= [
864       "nix/mime_util_xdg.cc",
865       "nix/mime_util_xdg.h",
866       "nix/xdg_util.cc",
867       "nix/xdg_util.h",
868     ]
870     if (!is_android) {
871       sources -= [
872         "linux_util.cc",
873         "linux_util.h",
874       ]
875     }
876   }
878   # iOS
879   if (is_ios) {
880     set_sources_assignment_filter([])
882     sources += [
883       "atomicops_internals_mac.h",
884       "base_paths_mac.h",
885       "base_paths_mac.mm",
886       "file_version_info_mac.h",
887       "file_version_info_mac.mm",
888       "files/file_util_mac.mm",
889       "mac/bundle_locations.h",
890       "mac/bundle_locations.mm",
891       "mac/call_with_eh_frame.cc",
892       "mac/call_with_eh_frame.h",
893       "mac/foundation_util.h",
894       "mac/foundation_util.mm",
895       "mac/mac_logging.cc",
896       "mac/mac_logging.h",
897       "mac/mach_logging.cc",
898       "mac/mach_logging.h",
899       "mac/objc_property_releaser.h",
900       "mac/objc_property_releaser.mm",
901       "mac/scoped_mach_port.cc",
902       "mac/scoped_mach_port.h",
903       "mac/scoped_mach_vm.cc",
904       "mac/scoped_mach_vm.h",
905       "mac/scoped_nsautorelease_pool.h",
906       "mac/scoped_nsautorelease_pool.mm",
907       "mac/scoped_nsobject.h",
908       "mac/scoped_objc_class_swizzler.h",
909       "mac/scoped_objc_class_swizzler.mm",
910       "message_loop/message_pump_mac.h",
911       "message_loop/message_pump_mac.mm",
912       "strings/sys_string_conversions_mac.mm",
913       "threading/platform_thread_mac.mm",
914       "time/time_mac.cc",
915     ]
917     set_sources_assignment_filter(sources_assignment_filter)
918   }
920   if (!use_glib) {
921     sources -= [
922       "message_loop/message_pump_glib.cc",
923       "message_loop/message_pump_glib.h",
924     ]
925   }
927   if (is_asan || is_lsan || is_msan || is_tsan) {
928     data += [ "//tools/valgrind/asan/" ]
929     if (is_win) {
930       data +=
931           [ "//third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer.exe" ]
932     } else {
933       data += [ "//third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer" ]
934     }
935   }
937   configs += [ "//build/config/compiler:wexit_time_destructors" ]
938   if (!is_debug) {
939     configs -= [ "//build/config/compiler:optimize" ]
940     configs += [ "//build/config/compiler:optimize_max" ]
941   }
943   allow_circular_includes_from = public_deps
946 # This is the subset of files from base that should not be used with a dynamic
947 # library. Note that this library cannot depend on base because base depends on
948 # base_static.
949 source_set("base_static") {
950   sources = [
951     "base_switches.cc",
952     "base_switches.h",
953     "win/pe_image.cc",
954     "win/pe_image.h",
955   ]
957   if (!is_debug) {
958     configs -= [ "//build/config/compiler:optimize" ]
959     configs += [ "//build/config/compiler:optimize_max" ]
960   }
963 component("i18n") {
964   output_name = "base_i18n"
965   sources = [
966     "i18n/base_i18n_export.h",
967     "i18n/bidi_line_iterator.cc",
968     "i18n/bidi_line_iterator.h",
969     "i18n/break_iterator.cc",
970     "i18n/break_iterator.h",
971     "i18n/case_conversion.cc",
972     "i18n/case_conversion.h",
973     "i18n/char_iterator.cc",
974     "i18n/char_iterator.h",
975     "i18n/file_util_icu.cc",
976     "i18n/file_util_icu.h",
977     "i18n/i18n_constants.cc",
978     "i18n/i18n_constants.h",
979     "i18n/icu_encoding_detection.cc",
980     "i18n/icu_encoding_detection.h",
981     "i18n/icu_string_conversions.cc",
982     "i18n/icu_string_conversions.h",
983     "i18n/icu_util.cc",
984     "i18n/icu_util.h",
985     "i18n/message_formatter.cc",
986     "i18n/message_formatter.h",
987     "i18n/number_formatting.cc",
988     "i18n/number_formatting.h",
989     "i18n/rtl.cc",
990     "i18n/rtl.h",
991     "i18n/streaming_utf8_validator.cc",
992     "i18n/streaming_utf8_validator.h",
993     "i18n/string_compare.cc",
994     "i18n/string_compare.h",
995     "i18n/string_search.cc",
996     "i18n/string_search.h",
997     "i18n/time_formatting.cc",
998     "i18n/time_formatting.h",
999     "i18n/timezone.cc",
1000     "i18n/timezone.h",
1001     "i18n/utf8_validator_tables.cc",
1002     "i18n/utf8_validator_tables.h",
1003   ]
1004   defines = [ "BASE_I18N_IMPLEMENTATION" ]
1005   configs += [ "//build/config/compiler:wexit_time_destructors" ]
1006   public_deps = [
1007     "//third_party/icu",
1008   ]
1009   deps = [
1010     ":base",
1011     "//base/third_party/dynamic_annotations",
1012   ]
1014   if (!is_debug) {
1015     configs -= [ "//build/config/compiler:optimize" ]
1016     configs += [ "//build/config/compiler:optimize_max" ]
1017   }
1019   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1020   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1023 if (is_ios || is_win || (is_linux && !is_chromeos)) {
1024   # TODO(GYP): Figure out which of these work and are needed on other platforms.
1025   test("base_perftests") {
1026     sources = [
1027       "message_loop/message_pump_perftest.cc",
1029       # "test/run_all_unittests.cc",
1030       "threading/thread_perftest.cc",
1031     ]
1032     deps = [
1033       ":base",
1034       "//base/test:test_support",
1035       "//base/test:test_support_perf",
1036       "//testing/perf",
1037       "//testing/gtest",
1038     ]
1040     if (is_android) {
1041       deps += [ "//testing/android/native_test:native_test_native_code" ]
1042     }
1043   }
1045   test("base_i18n_perftests") {
1046     sources = [
1047       "i18n/streaming_utf8_validator_perftest.cc",
1048     ]
1049     deps = [
1050       ":base",
1051       ":i18n",
1052       "//base/test:test_support",
1053       "//base/test:test_support_perf",
1054       "//testing/gtest",
1055     ]
1056   }
1058   if (!is_ios) {
1059     executable("build_utf8_validator_tables") {
1060       sources = [
1061         "i18n/build_utf8_validator_tables.cc",
1062       ]
1063       deps = [
1064         ":base",
1065         "//third_party/icu:icuuc",
1066       ]
1067     }
1069     executable("check_example") {
1070       sources = [
1071         "check_example.cc",
1072       ]
1073       deps = [
1074         ":base",
1075       ]
1076     }
1077   }
1080 component("prefs") {
1081   sources = [
1082     "prefs/default_pref_store.cc",
1083     "prefs/default_pref_store.h",
1084     "prefs/json_pref_store.cc",
1085     "prefs/json_pref_store.h",
1086     "prefs/overlay_user_pref_store.cc",
1087     "prefs/overlay_user_pref_store.h",
1088     "prefs/pref_change_registrar.cc",
1089     "prefs/pref_change_registrar.h",
1090     "prefs/pref_member.cc",
1091     "prefs/pref_member.h",
1092     "prefs/pref_notifier_impl.cc",
1093     "prefs/pref_notifier_impl.h",
1094     "prefs/pref_registry.cc",
1095     "prefs/pref_registry.h",
1096     "prefs/pref_registry_simple.cc",
1097     "prefs/pref_registry_simple.h",
1098     "prefs/pref_service.cc",
1099     "prefs/pref_service.h",
1100     "prefs/pref_service_factory.cc",
1101     "prefs/pref_service_factory.h",
1102     "prefs/pref_store.cc",
1103     "prefs/pref_store.h",
1104     "prefs/pref_value_map.cc",
1105     "prefs/pref_value_map.h",
1106     "prefs/pref_value_store.cc",
1107     "prefs/pref_value_store.h",
1108     "prefs/scoped_user_pref_update.cc",
1109     "prefs/scoped_user_pref_update.h",
1110     "prefs/value_map_pref_store.cc",
1111     "prefs/value_map_pref_store.h",
1112   ]
1113   if (!is_ios) {
1114     sources += [
1115       "prefs/base_prefs_export.h",
1116       "prefs/persistent_pref_store.h",
1117       "prefs/pref_filter.h",
1118       "prefs/pref_notifier.h",
1119       "prefs/pref_observer.h",
1120       "prefs/writeable_pref_store.h",
1121     ]
1122   }
1124   defines = [ "BASE_PREFS_IMPLEMENTATION" ]
1126   deps = [
1127     ":base",
1128   ]
1130   if (!is_debug) {
1131     configs -= [ "//build/config/compiler:optimize" ]
1132     configs += [ "//build/config/compiler:optimize_max" ]
1133   }
1136 source_set("prefs_test_support") {
1137   testonly = true
1138   sources = [
1139     "prefs/mock_pref_change_callback.cc",
1140     "prefs/mock_pref_change_callback.h",
1141     "prefs/pref_store_observer_mock.cc",
1142     "prefs/pref_store_observer_mock.h",
1143     "prefs/testing_pref_service.cc",
1144     "prefs/testing_pref_service.h",
1145     "prefs/testing_pref_store.cc",
1146     "prefs/testing_pref_store.h",
1147   ]
1149   public_deps = [
1150     ":prefs",
1151   ]
1152   deps = [
1153     ":base",
1154     "//testing/gmock",
1155     "//testing/gtest",
1156   ]
1159 source_set("message_loop_tests") {
1160   testonly = true
1161   sources = [
1162     "message_loop/message_loop_test.cc",
1163     "message_loop/message_loop_test.h",
1164   ]
1166   deps = [
1167     ":base",
1168     "//testing/gtest",
1169   ]
1172 if (is_win) {
1173   # Target to manually rebuild pe_image_test.dll which is checked into
1174   # base/test/data/pe_image.
1175   shared_library("pe_image_test") {
1176     sources = [
1177       "win/pe_image_test.cc",
1178     ]
1179     ldflags = [
1180       "/DELAYLOAD:cfgmgr32.dll",
1181       "/DELAYLOAD:shell32.dll",
1182       "/SUBSYSTEM:WINDOWS",
1183     ]
1184     libs = [
1185       "cfgmgr32.lib",
1186       "shell32.lib",
1187     ]
1188   }
1191 # TODO(GYP): Delete this after we've converted everything to GN.
1192 # The _run targets exist only for compatibility w/ GYP.
1193 group("base_unittests_run") {
1194   testonly = true
1195   deps = [
1196     ":base_unittests",
1197   ]
1200 test("base_unittests") {
1201   sources = [
1202     "android/application_status_listener_unittest.cc",
1203     "android/content_uri_utils_unittest.cc",
1204     "android/jni_android_unittest.cc",
1205     "android/jni_array_unittest.cc",
1206     "android/jni_string_unittest.cc",
1207     "android/library_loader/library_prefetcher_unittest.cc",
1208     "android/path_utils_unittest.cc",
1209     "android/scoped_java_ref_unittest.cc",
1210     "android/sys_utils_unittest.cc",
1211     "async_socket_io_handler_unittest.cc",
1212     "at_exit_unittest.cc",
1213     "atomicops_unittest.cc",
1214     "barrier_closure_unittest.cc",
1215     "base64_unittest.cc",
1216     "big_endian_unittest.cc",
1217     "bind_unittest.cc",
1218     "bind_unittest.nc",
1219     "bits_unittest.cc",
1220     "build_time_unittest.cc",
1221     "callback_helpers_unittest.cc",
1222     "callback_list_unittest.cc",
1223     "callback_list_unittest.nc",
1224     "callback_unittest.cc",
1225     "callback_unittest.nc",
1226     "cancelable_callback_unittest.cc",
1227     "command_line_unittest.cc",
1228     "containers/adapters_unittest.cc",
1229     "containers/hash_tables_unittest.cc",
1230     "containers/linked_list_unittest.cc",
1231     "containers/mru_cache_unittest.cc",
1232     "containers/scoped_ptr_hash_map_unittest.cc",
1233     "containers/scoped_ptr_map_unittest.cc",
1234     "containers/small_map_unittest.cc",
1235     "containers/stack_container_unittest.cc",
1236     "cpu_unittest.cc",
1237     "debug/crash_logging_unittest.cc",
1238     "debug/debugger_unittest.cc",
1239     "debug/leak_tracker_unittest.cc",
1240     "debug/proc_maps_linux_unittest.cc",
1241     "debug/stack_trace_unittest.cc",
1242     "debug/task_annotator_unittest.cc",
1243     "deferred_sequenced_task_runner_unittest.cc",
1244     "environment_unittest.cc",
1245     "file_version_info_unittest.cc",
1246     "files/dir_reader_posix_unittest.cc",
1247     "files/file_path_unittest.cc",
1248     "files/file_path_watcher_unittest.cc",
1249     "files/file_proxy_unittest.cc",
1250     "files/file_unittest.cc",
1251     "files/file_util_proxy_unittest.cc",
1252     "files/file_util_unittest.cc",
1253     "files/important_file_writer_unittest.cc",
1254     "files/scoped_temp_dir_unittest.cc",
1255     "gmock_unittest.cc",
1256     "guid_unittest.cc",
1257     "hash_unittest.cc",
1258     "i18n/break_iterator_unittest.cc",
1259     "i18n/case_conversion_unittest.cc",
1260     "i18n/char_iterator_unittest.cc",
1261     "i18n/file_util_icu_unittest.cc",
1262     "i18n/icu_string_conversions_unittest.cc",
1263     "i18n/message_formatter_unittest.cc",
1264     "i18n/number_formatting_unittest.cc",
1265     "i18n/rtl_unittest.cc",
1266     "i18n/streaming_utf8_validator_unittest.cc",
1267     "i18n/string_search_unittest.cc",
1268     "i18n/time_formatting_unittest.cc",
1269     "i18n/timezone_unittest.cc",
1270     "id_map_unittest.cc",
1271     "ios/device_util_unittest.mm",
1272     "ios/weak_nsobject_unittest.mm",
1273     "json/json_parser_unittest.cc",
1274     "json/json_reader_unittest.cc",
1275     "json/json_value_converter_unittest.cc",
1276     "json/json_value_serializer_unittest.cc",
1277     "json/json_writer_unittest.cc",
1278     "json/string_escape_unittest.cc",
1279     "lazy_instance_unittest.cc",
1280     "logging_unittest.cc",
1281     "mac/bind_objc_block_unittest.mm",
1282     "mac/call_with_eh_frame_unittest.mm",
1283     "mac/dispatch_source_mach_unittest.cc",
1284     "mac/foundation_util_unittest.mm",
1285     "mac/libdispatch_task_runner_unittest.cc",
1286     "mac/mac_util_unittest.mm",
1287     "mac/objc_property_releaser_unittest.mm",
1288     "mac/scoped_nsobject_unittest.mm",
1289     "mac/scoped_objc_class_swizzler_unittest.mm",
1290     "mac/scoped_sending_event_unittest.mm",
1291     "md5_unittest.cc",
1292     "memory/aligned_memory_unittest.cc",
1293     "memory/discardable_shared_memory_unittest.cc",
1294     "memory/linked_ptr_unittest.cc",
1295     "memory/memory_pressure_monitor_chromeos_unittest.cc",
1296     "memory/memory_pressure_monitor_win_unittest.cc",
1297     "memory/ref_counted_memory_unittest.cc",
1298     "memory/ref_counted_unittest.cc",
1299     "memory/scoped_ptr_unittest.cc",
1300     "memory/scoped_ptr_unittest.nc",
1301     "memory/scoped_vector_unittest.cc",
1302     "memory/shared_memory_unittest.cc",
1303     "memory/singleton_unittest.cc",
1304     "memory/weak_ptr_unittest.cc",
1305     "memory/weak_ptr_unittest.nc",
1306     "message_loop/message_loop_task_runner_unittest.cc",
1307     "message_loop/message_loop_unittest.cc",
1308     "message_loop/message_pump_glib_unittest.cc",
1309     "message_loop/message_pump_io_ios_unittest.cc",
1310     "metrics/bucket_ranges_unittest.cc",
1311     "metrics/field_trial_unittest.cc",
1312     "metrics/histogram_base_unittest.cc",
1313     "metrics/histogram_delta_serialization_unittest.cc",
1314     "metrics/histogram_snapshot_manager_unittest.cc",
1315     "metrics/histogram_unittest.cc",
1316     "metrics/sample_map_unittest.cc",
1317     "metrics/sample_vector_unittest.cc",
1318     "metrics/sparse_histogram_unittest.cc",
1319     "metrics/statistics_recorder_unittest.cc",
1320     "move_unittest.cc",
1321     "numerics/safe_numerics_unittest.cc",
1322     "observer_list_unittest.cc",
1323     "os_compat_android_unittest.cc",
1324     "path_service_unittest.cc",
1325     "pickle_unittest.cc",
1326     "posix/file_descriptor_shuffle_unittest.cc",
1327     "posix/unix_domain_socket_linux_unittest.cc",
1328     "power_monitor/power_monitor_unittest.cc",
1329     "prefs/default_pref_store_unittest.cc",
1330     "prefs/json_pref_store_unittest.cc",
1331     "prefs/overlay_user_pref_store_unittest.cc",
1332     "prefs/pref_change_registrar_unittest.cc",
1333     "prefs/pref_member_unittest.cc",
1334     "prefs/pref_notifier_impl_unittest.cc",
1335     "prefs/pref_service_unittest.cc",
1336     "prefs/pref_value_map_unittest.cc",
1337     "prefs/pref_value_store_unittest.cc",
1338     "prefs/scoped_user_pref_update_unittest.cc",
1339     "process/memory_unittest.cc",
1340     "process/memory_unittest_mac.h",
1341     "process/memory_unittest_mac.mm",
1342     "process/process_metrics_unittest.cc",
1343     "process/process_metrics_unittest_ios.cc",
1344     "process/process_unittest.cc",
1345     "process/process_util_unittest.cc",
1346     "profiler/stack_sampling_profiler_unittest.cc",
1347     "profiler/tracked_time_unittest.cc",
1348     "rand_util_unittest.cc",
1349     "scoped_clear_errno_unittest.cc",
1350     "scoped_generic_unittest.cc",
1351     "scoped_native_library_unittest.cc",
1352     "security_unittest.cc",
1353     "sequence_checker_unittest.cc",
1354     "sha1_unittest.cc",
1355     "stl_util_unittest.cc",
1356     "strings/nullable_string16_unittest.cc",
1357     "strings/pattern_unittest.cc",
1358     "strings/safe_sprintf_unittest.cc",
1359     "strings/string16_unittest.cc",
1360     "strings/string_number_conversions_unittest.cc",
1361     "strings/string_piece_unittest.cc",
1362     "strings/string_split_unittest.cc",
1363     "strings/string_tokenizer_unittest.cc",
1364     "strings/string_util_unittest.cc",
1365     "strings/stringize_macros_unittest.cc",
1366     "strings/stringprintf_unittest.cc",
1367     "strings/sys_string_conversions_mac_unittest.mm",
1368     "strings/sys_string_conversions_unittest.cc",
1369     "strings/utf_offset_string_conversions_unittest.cc",
1370     "strings/utf_string_conversions_unittest.cc",
1371     "supports_user_data_unittest.cc",
1372     "sync_socket_unittest.cc",
1373     "synchronization/cancellation_flag_unittest.cc",
1374     "synchronization/condition_variable_unittest.cc",
1375     "synchronization/lock_unittest.cc",
1376     "synchronization/waitable_event_unittest.cc",
1377     "synchronization/waitable_event_watcher_unittest.cc",
1378     "sys_info_unittest.cc",
1379     "system_monitor/system_monitor_unittest.cc",
1380     "task/cancelable_task_tracker_unittest.cc",
1381     "task_runner_util_unittest.cc",
1382     "template_util_unittest.cc",
1383     "test/histogram_tester_unittest.cc",
1384     "test/test_reg_util_win_unittest.cc",
1385     "test/trace_event_analyzer_unittest.cc",
1386     "test/user_action_tester_unittest.cc",
1387     "threading/non_thread_safe_unittest.cc",
1388     "threading/platform_thread_unittest.cc",
1389     "threading/sequenced_worker_pool_unittest.cc",
1390     "threading/simple_thread_unittest.cc",
1391     "threading/thread_checker_unittest.cc",
1392     "threading/thread_collision_warner_unittest.cc",
1393     "threading/thread_id_name_manager_unittest.cc",
1394     "threading/thread_local_storage_unittest.cc",
1395     "threading/thread_local_unittest.cc",
1396     "threading/thread_unittest.cc",
1397     "threading/watchdog_unittest.cc",
1398     "threading/worker_pool_posix_unittest.cc",
1399     "threading/worker_pool_unittest.cc",
1400     "time/pr_time_unittest.cc",
1401     "time/time_unittest.cc",
1402     "time/time_win_unittest.cc",
1403     "timer/hi_res_timer_manager_unittest.cc",
1404     "timer/mock_timer_unittest.cc",
1405     "timer/timer_unittest.cc",
1406     "tools_sanity_unittest.cc",
1407     "tracked_objects_unittest.cc",
1408     "tuple_unittest.cc",
1409     "values_unittest.cc",
1410     "version_unittest.cc",
1411     "vlog_unittest.cc",
1412     "win/dllmain.cc",
1413     "win/enum_variant_unittest.cc",
1414     "win/event_trace_consumer_unittest.cc",
1415     "win/event_trace_controller_unittest.cc",
1416     "win/event_trace_provider_unittest.cc",
1417     "win/i18n_unittest.cc",
1418     "win/iunknown_impl_unittest.cc",
1419     "win/message_window_unittest.cc",
1420     "win/object_watcher_unittest.cc",
1421     "win/pe_image_unittest.cc",
1422     "win/registry_unittest.cc",
1423     "win/scoped_bstr_unittest.cc",
1424     "win/scoped_comptr_unittest.cc",
1425     "win/scoped_process_information_unittest.cc",
1426     "win/scoped_variant_unittest.cc",
1427     "win/shortcut_unittest.cc",
1428     "win/startup_information_unittest.cc",
1429     "win/win_util_unittest.cc",
1430     "win/wrapped_window_proc_unittest.cc",
1431   ]
1433   deps = [
1434     ":base",
1435     ":i18n",
1436     ":message_loop_tests",
1437     ":prefs",
1438     ":prefs_test_support",
1439     "//base/allocator",
1440     "//base/test:run_all_unittests",
1441     "//base/test:test_support",
1442     "//base/third_party/dynamic_annotations",
1443     "//base/trace_event:trace_event_unittests",
1444     "//testing/gmock",
1445     "//testing/gtest",
1446     "//third_party/icu",
1447   ]
1449   data = [
1450     "test/data/",
1451   ]
1453   # Allow more direct string conversions on platforms with native utf8
1454   # strings
1455   if (is_mac || is_ios || is_chromeos) {
1456     defines = [ "SYSTEM_NATIVE_UTF8" ]
1457   }
1459   if (is_android) {
1460     apk_deps = [
1461       ":base_java",
1462       ":base_java_unittest_support",
1463     ]
1465     # TODO(brettw) I think this should not be here, we should not be using
1466     # isolate files.
1467     isolate_file = "base_unittests.isolate"
1468   }
1470   if (is_ios) {
1471     sources -= [
1472       "memory/discardable_shared_memory_unittest.cc",
1473       "memory/shared_memory_unittest.cc",
1474       "process/memory_unittest.cc",
1475       "process/process_unittest.cc",
1476       "process/process_util_unittest.cc",
1477     ]
1479     # Pull in specific Mac files for iOS (which have been filtered out by file
1480     # name rules).
1481     set_sources_assignment_filter([])
1482     sources += [
1483       "mac/bind_objc_block_unittest.mm",
1484       "mac/foundation_util_unittest.mm",
1485       "mac/objc_property_releaser_unittest.mm",
1486       "mac/scoped_nsobject_unittest.mm",
1487       "strings/sys_string_conversions_mac_unittest.mm",
1488     ]
1489     set_sources_assignment_filter(sources_assignment_filter)
1491     # TODO(GYP): dep on copy_test_data_ios action.
1492   }
1494   if (is_linux) {
1495     sources -= [ "file_version_info_unittest.cc" ]
1496     sources += [ "nix/xdg_util_unittest.cc" ]
1497     deps += [ "//base/test:malloc_wrapper" ]
1499     if (use_glib) {
1500       configs += [ "//build/config/linux:glib" ]
1501     }
1502   }
1504   if (!is_linux || use_ozone) {
1505     sources -= [ "message_loop/message_pump_glib_unittest.cc" ]
1506   }
1508   if (is_posix && !is_ios) {
1509     sources += [ "message_loop/message_pump_libevent_unittest.cc" ]
1510     deps += [ "//third_party/libevent" ]
1511   }
1513   if (is_android) {
1514     deps += [ "//testing/android/native_test:native_test_native_code" ]
1515     set_sources_assignment_filter([])
1516     sources += [ "debug/proc_maps_linux_unittest.cc" ]
1517     set_sources_assignment_filter(sources_assignment_filter)
1518   }
1520   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1521   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1523   # Symbols for crashes when running tests on swarming.
1524   if (symbol_level > 0) {
1525     if (is_win) {
1526       data += [ "$root_out_dir/base_unittests.exe.pdb" ]
1527     } else if (is_mac) {
1528       data += [ "$root_out_dir/base_unittests.dSYM/" ]
1529     }
1530   }
1533 if (is_android) {
1534   # GYP: //base.gyp:base_jni_headers
1535   generate_jni("base_jni_headers") {
1536     sources = [
1537       "android/java/src/org/chromium/base/AnimationFrameTimeHistogram.java",
1538       "android/java/src/org/chromium/base/ApkAssets.java",
1539       "android/java/src/org/chromium/base/ApplicationStatus.java",
1540       "android/java/src/org/chromium/base/BuildInfo.java",
1541       "android/java/src/org/chromium/base/CommandLine.java",
1542       "android/java/src/org/chromium/base/ContentUriUtils.java",
1543       "android/java/src/org/chromium/base/CpuFeatures.java",
1544       "android/java/src/org/chromium/base/EventLog.java",
1545       "android/java/src/org/chromium/base/FieldTrialList.java",
1546       "android/java/src/org/chromium/base/ImportantFileWriterAndroid.java",
1547       "android/java/src/org/chromium/base/JNIUtils.java",
1548       "android/java/src/org/chromium/base/JavaHandlerThread.java",
1549       "android/java/src/org/chromium/base/LocaleUtils.java",
1550       "android/java/src/org/chromium/base/MemoryPressureListener.java",
1551       "android/java/src/org/chromium/base/PathService.java",
1552       "android/java/src/org/chromium/base/PathUtils.java",
1553       "android/java/src/org/chromium/base/PowerMonitor.java",
1554       "android/java/src/org/chromium/base/SysUtils.java",
1555       "android/java/src/org/chromium/base/SystemMessageHandler.java",
1556       "android/java/src/org/chromium/base/ThreadUtils.java",
1557       "android/java/src/org/chromium/base/TraceEvent.java",
1558       "android/java/src/org/chromium/base/library_loader/LibraryLoader.java",
1559       "android/java/src/org/chromium/base/metrics/RecordHistogram.java",
1560       "android/java/src/org/chromium/base/metrics/RecordUserAction.java",
1561     ]
1563     deps = [
1564       ":android_runtime_jni_headers",
1565     ]
1567     jni_package = "base"
1568   }
1570   # GYP: //base.gyp:android_runtime_jni_headers
1571   generate_jar_jni("android_runtime_jni_headers") {
1572     jni_package = "base"
1573     classes = [ "java/lang/Runtime.class" ]
1574   }
1576   # GYP: //base.gyp:base_java
1577   android_library("base_java") {
1578     srcjar_deps = [
1579       ":base_android_java_enums_srcjar",
1580       ":base_native_libraries_gen",
1581     ]
1583     deps = [
1584       "//third_party/jsr-305:jsr_305_javalib",
1585     ]
1587     DEPRECATED_java_in_dir = "android/java/src"
1589     # A new version of NativeLibraries.java (with the actual correct values)
1590     # will be created when creating an apk.
1591     jar_excluded_patterns = [
1592       "*/NativeLibraries.class",
1593       "*/NativeLibraries##*.class",
1594     ]
1595   }
1597   # GYP: //base.gyp:base_javatests
1598   android_library("base_javatests") {
1599     deps = [
1600       ":base_java",
1601       ":base_java_test_support",
1602     ]
1603     DEPRECATED_java_in_dir = "android/javatests/src"
1604   }
1606   # GYP: //base.gyp:base_java_test_support
1607   android_library("base_java_test_support") {
1608     deps = [
1609       ":base_java",
1610       "//testing/android/reporter:reporter_java",
1611     ]
1612     DEPRECATED_java_in_dir = "test/android/javatests/src"
1613   }
1615   # GYP: //base.gyp:base_junit_tests
1616   junit_binary("base_junit_tests") {
1617     java_files = [ "android/junit/src/org/chromium/base/LogTest.java" ]
1618     deps = [
1619       ":base_java",
1620       ":base_java_test_support",
1621     ]
1622   }
1624   # GYP: //base.gyp:base_java_application_state
1625   # GYP: //base.gyp:base_java_library_load_from_apk_status_codes
1626   # GYP: //base.gyp:base_java_library_process_type
1627   # GYP: //base.gyp:base_java_memory_pressure_level
1628   java_cpp_enum("base_android_java_enums_srcjar") {
1629     sources = [
1630       "android/application_status_listener.h",
1631       "android/library_loader/library_load_from_apk_status_codes.h",
1632       "android/library_loader/library_loader_hooks.h",
1633       "memory/memory_pressure_listener.h",
1634     ]
1635     outputs = [
1636       "org/chromium/base/ApplicationState.java",
1637       "org/chromium/base/library_loader/LibraryLoadFromApkStatusCodes.java",
1638       "org/chromium/base/library_loader/LibraryProcessType.java",
1639       "org/chromium/base/MemoryPressureLevel.java",
1640     ]
1641   }
1643   # GYP: //base/base.gyp:base_native_libraries_gen
1644   java_cpp_template("base_native_libraries_gen") {
1645     sources = [
1646       "android/java/templates/NativeLibraries.template",
1647     ]
1648     package_name = "org/chromium/base/library_loader"
1649   }
1651   # GYP: //base.gyp:base_java_unittest_support
1652   android_library("base_java_unittest_support") {
1653     deps = [
1654       ":base_java",
1655     ]
1656     java_files =
1657         [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1658   }