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