Suppress accessibility events when user is navigating away.
[chromium-blink-merge.git] / base / base.gyp
blob00244aaa62bde7ee4ef5d8f03beef1ef05368832
1 # Copyright (c) 2012 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.
6   'variables': {
7     'chromium_code': 1,
8   },
9   'includes': [
10     '../build/win_precompile.gypi',
11     'base.gypi',
12   ],
13   'targets': [
14     {
15       'target_name': 'base',
16       'type': '<(component)',
17       'toolsets': ['host', 'target'],
18       'variables': {
19         'base_target': 1,
20         'enable_wexit_time_destructors': 1,
21         'optimize': 'max',
22       },
23       'dependencies': [
24         'base_static',
25         'allocator/allocator.gyp:allocator_extension_thunks',
26         '../testing/gtest.gyp:gtest_prod',
27         '../third_party/modp_b64/modp_b64.gyp:modp_b64',
28         'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
29       ],
30       # TODO(gregoryd): direct_dependent_settings should be shared with the
31       #  64-bit target, but it doesn't work due to a bug in gyp
32       'direct_dependent_settings': {
33         'include_dirs': [
34           '..',
35         ],
36       },
37       'conditions': [
38         ['desktop_linux == 1 or chromeos == 1', {
39           'conditions': [
40             ['chromeos==1', {
41               'sources/': [ ['include', '_chromeos\\.cc$'] ]
42             }],
43           ],
44           'dependencies': [
45             'symbolize',
46             'xdg_mime',
47           ],
48           'defines': [
49             'USE_SYMBOLIZE',
50           ],
51         }, {  # desktop_linux == 0 and chromeos == 0
52             'sources/': [
53               ['exclude', '/xdg_user_dirs/'],
54               ['exclude', '_nss\\.cc$'],
55             ],
56         }],
57         ['use_glib==1', {
58           'dependencies': [
59             '../build/linux/system.gyp:glib',
60           ],
61           'export_dependent_settings': [
62             '../build/linux/system.gyp:glib',
63           ],
64         }],
65         ['OS == "android" and _toolset == "host"', {
66           # Always build base as a static_library for host toolset, even if
67           # we're doing a component build. Specifically, we only care about the
68           # target toolset using components since that's what developers are
69           # focusing on. In theory we should do this more generally for all
70           # targets when building for host, but getting the gyp magic
71           # per-toolset for the "component" variable is hard, and we really only
72           # need base on host.
73           'type': 'static_library',
74           # Base for host support is the minimum required to run the
75           # ssl false start blacklist tool. It requires further changes
76           # to generically support host builds (and tests).
77           # Note: when building for host, gyp has OS == "android",
78           # hence the *_android.cc files are included but the actual code
79           # doesn't have OS_ANDROID / ANDROID defined.
80           'conditions': [
81             ['host_os == "mac"', {
82               'sources/': [
83                 ['exclude', '^native_library_linux\\.cc$'],
84                 ['exclude', '^process_util_linux\\.cc$'],
85                 ['exclude', '^sys_info_linux\\.cc$'],
86                 ['exclude', '^sys_string_conversions_linux\\.cc$'],
87                 ['exclude', '^worker_pool_linux\\.cc$'],
88               ],
89             }],
90           ],
91         }],
92         ['OS == "android" and _toolset == "target"', {
93           'conditions': [
94             ['target_arch == "ia32" or target_arch == "x64"', {
95               'sources/': [
96                 ['include', '^atomicops_internals_x86_gcc\\.cc$'],
97               ],
98             }],
99             ['target_arch == "mipsel"', {
100               'sources/': [
101                 ['include', '^atomicops_internals_mips_gcc\\.cc$'],
102               ],
103             }],
104           ],
105           'dependencies': [
106             'base_jni_headers',
107             '../third_party/ashmem/ashmem.gyp:ashmem',
108           ],
109           'link_settings': {
110             'libraries': [
111               '-llog',
112             ],
113           },
114           'sources!': [
115             'debug/stack_trace_posix.cc',
116           ],
117           'includes': [
118             '../build/android/cpufeatures.gypi',
119           ],
120         }],
121         ['OS == "android" and _toolset == "target" and android_webview_build == 0', {
122           'dependencies': [
123             'base_java',
124           ],
125         }],
126         ['os_bsd==1', {
127           'include_dirs': [
128             '/usr/local/include',
129           ],
130           'link_settings': {
131             'libraries': [
132               '-L/usr/local/lib -lexecinfo',
133             ],
134           },
135         }],
136         ['OS == "linux"', {
137           'link_settings': {
138             'libraries': [
139               # We need rt for clock_gettime().
140               '-lrt',
141               # For 'native_library_linux.cc'
142               '-ldl',
143             ],
144           },
145           'conditions': [
146             ['use_allocator!="tcmalloc"', {
147               'defines': [
148                 'NO_TCMALLOC',
149               ],
150               'direct_dependent_settings': {
151                 'defines': [
152                   'NO_TCMALLOC',
153                 ],
154               },
155             }],
156           ],
157         }],
158         ['OS == "win"', {
159           # Specify delayload for base.dll.
160           'msvs_settings': {
161             'VCLinkerTool': {
162               'DelayLoadDLLs': [
163                 'cfgmgr32.dll',
164                 'powrprof.dll',
165                 'setupapi.dll',
166               ],
167               'AdditionalDependencies': [
168                 'cfgmgr32.lib',
169                 'powrprof.lib',
170                 'setupapi.lib',
171               ],
172             },
173           },
174           # Specify delayload for components that link with base.lib.
175           'all_dependent_settings': {
176             'msvs_settings': {
177               'VCLinkerTool': {
178                 'DelayLoadDLLs': [
179                   'cfgmgr32.dll',
180                   'powrprof.dll',
181                   'setupapi.dll',
182                 ],
183                 'AdditionalDependencies': [
184                   'cfgmgr32.lib',
185                   'powrprof.lib',
186                   'setupapi.lib',
187                 ],
188               },
189             },
190           },
191         }],
192         ['OS == "mac" or (OS == "ios" and _toolset == "host")', {
193           'link_settings': {
194             'libraries': [
195               '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
196               '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework',
197               '$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
198               '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
199               '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
200               '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
201               '$(SDKROOT)/System/Library/Frameworks/Security.framework',
202             ],
203           },
204         }],
205         ['OS == "ios" and _toolset != "host"', {
206           'link_settings': {
207             'libraries': [
208               '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
209               '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
210               '$(SDKROOT)/System/Library/Frameworks/CoreText.framework',
211               '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
212               '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
213             ],
214           },
215         }],
216         ['OS != "win" and (OS != "ios" or _toolset == "host")', {
217             'dependencies': ['../third_party/libevent/libevent.gyp:libevent'],
218         },],
219         ['component=="shared_library"', {
220           'conditions': [
221             ['OS=="win"', {
222               'sources!': [
223                 'debug/debug_on_start_win.cc',
224               ],
225             }],
226           ],
227         }],
228       ],
229       'sources': [
230         'async_socket_io_handler.h',
231         'async_socket_io_handler_posix.cc',
232         'async_socket_io_handler_win.cc',
233         'auto_reset.h',
234         'linux_util.cc',
235         'linux_util.h',
236         'message_loop/message_pump_android.cc',
237         'message_loop/message_pump_android.h',
238         'message_loop/message_pump_glib.cc',
239         'message_loop/message_pump_glib.h',
240         'message_loop/message_pump_io_ios.cc',
241         'message_loop/message_pump_io_ios.h',
242         'message_loop/message_pump_libevent.cc',
243         'message_loop/message_pump_libevent.h',
244         'message_loop/message_pump_mac.h',
245         'message_loop/message_pump_mac.mm',
246         'metrics/field_trial.cc',
247         'metrics/field_trial.h',
248         'posix/file_descriptor_shuffle.cc',
249         'posix/file_descriptor_shuffle.h',
250         'sync_socket.h',
251         'sync_socket_posix.cc',
252         'sync_socket_win.cc',
253         'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
254         'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
255       ],
256       'includes': [
257         '../build/android/increase_size_for_speed.gypi',
258       ],
259     },
260     {
261       'target_name': 'base_i18n',
262       'type': '<(component)',
263       'variables': {
264         'enable_wexit_time_destructors': 1,
265         'optimize': 'max',
266         'base_i18n_target': 1,
267       },
268       'dependencies': [
269         'base',
270         'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
271         '../third_party/icu/icu.gyp:icui18n',
272         '../third_party/icu/icu.gyp:icuuc',
273       ],
274       'conditions': [
275         ['OS == "win"', {
276           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
277           'msvs_disabled_warnings': [
278             4267,
279           ],
280         }],
281         ['icu_use_data_file_flag==1', {
282           'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'],
283         }, { # else icu_use_data_file_flag !=1
284           'conditions': [
285             ['OS=="win"', {
286               'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'],
287             }, {
288               'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'],
289             }],
290           ],
291         }],
292         ['OS == "ios"', {
293           'toolsets': ['host', 'target'],
294         }],
295       ],
296       'export_dependent_settings': [
297         'base',
298       ],
299       'includes': [
300         '../build/android/increase_size_for_speed.gypi',
301       ],
302     },
303     {
304       'target_name': 'base_message_loop_tests',
305       'type': 'static_library',
306       'dependencies': [
307         'base',
308         '../testing/gtest.gyp:gtest',
309       ],
310       'sources': [
311         'message_loop/message_loop_test.cc',
312         'message_loop/message_loop_test.h',
313       ],
314     },
315     {
316       'target_name': 'base_prefs',
317       'type': '<(component)',
318       'variables': {
319         'enable_wexit_time_destructors': 1,
320         'optimize': 'max',
321       },
322       'dependencies': [
323         'base',
324       ],
325       'export_dependent_settings': [
326         'base',
327       ],
328       'defines': [
329         'BASE_PREFS_IMPLEMENTATION',
330       ],
331       'sources': [
332         'prefs/base_prefs_export.h',
333         'prefs/default_pref_store.cc',
334         'prefs/default_pref_store.h',
335         'prefs/json_pref_store.cc',
336         'prefs/json_pref_store.h',
337         'prefs/overlay_user_pref_store.cc',
338         'prefs/overlay_user_pref_store.h',
339         'prefs/persistent_pref_store.h',
340         'prefs/pref_change_registrar.cc',
341         'prefs/pref_change_registrar.h',
342         'prefs/pref_filter.h',
343         'prefs/pref_member.cc',
344         'prefs/pref_member.h',
345         'prefs/pref_notifier.h',
346         'prefs/pref_notifier_impl.cc',
347         'prefs/pref_notifier_impl.h',
348         'prefs/pref_observer.h',
349         'prefs/pref_registry.cc',
350         'prefs/pref_registry.h',
351         'prefs/pref_registry_simple.cc',
352         'prefs/pref_registry_simple.h',
353         'prefs/pref_service.cc',
354         'prefs/pref_service.h',
355         'prefs/pref_service_factory.cc',
356         'prefs/pref_service_factory.h',
357         'prefs/pref_store.cc',
358         'prefs/pref_store.h',
359         'prefs/pref_value_map.cc',
360         'prefs/pref_value_map.h',
361         'prefs/pref_value_store.cc',
362         'prefs/pref_value_store.h',
363         'prefs/scoped_user_pref_update.cc',
364         'prefs/scoped_user_pref_update.h',
365         'prefs/value_map_pref_store.cc',
366         'prefs/value_map_pref_store.h',
367         'prefs/writeable_pref_store.h',
368       ],
369       'includes': [
370         '../build/android/increase_size_for_speed.gypi',
371       ],
372     },
373     {
374       # TODO(pasko): Remove this target when crbug.com/424562 is fixed.
375       # GN: //base:protect_file_posix
376       'target_name': 'protect_file_posix',
377       'type': 'static_library',
378       'dependencies': [
379         'base',
380       ],
381       'sources': [
382         'files/protect_file_posix.cc',
383       ],
384     },
385     {
386       'target_name': 'base_prefs_test_support',
387       'type': 'static_library',
388       'dependencies': [
389         'base',
390         'base_prefs',
391         '../testing/gmock.gyp:gmock',
392       ],
393       'sources': [
394         'prefs/mock_pref_change_callback.cc',
395         'prefs/pref_store_observer_mock.cc',
396         'prefs/pref_store_observer_mock.h',
397         'prefs/testing_pref_service.cc',
398         'prefs/testing_pref_service.h',
399         'prefs/testing_pref_store.cc',
400         'prefs/testing_pref_store.h',
401       ],
402     },
403     {
404       # This is the subset of files from base that should not be used with a
405       # dynamic library. Note that this library cannot depend on base because
406       # base depends on base_static.
407       'target_name': 'base_static',
408       'type': 'static_library',
409       'variables': {
410         'enable_wexit_time_destructors': 1,
411         'optimize': 'max',
412       },
413       'toolsets': ['host', 'target'],
414       'sources': [
415         'base_switches.cc',
416         'base_switches.h',
417         'win/pe_image.cc',
418         'win/pe_image.h',
419       ],
420       'include_dirs': [
421         '..',
422       ],
423       'includes': [
424         '../build/android/increase_size_for_speed.gypi',
425       ],
426     },
427     # Include this target for a main() function that simply instantiates
428     # and runs a base::TestSuite.
429     {
430       'target_name': 'run_all_unittests',
431       'type': 'static_library',
432       'dependencies': [
433         'test_support_base',
434       ],
435       'sources': [
436         'test/run_all_unittests.cc',
437       ],
438     },
439     {
440       'target_name': 'base_unittests',
441       'type': '<(gtest_target_type)',
442       'sources': [
443         'android/application_status_listener_unittest.cc',
444         'android/content_uri_utils_unittest.cc',
445         'android/jni_android_unittest.cc',
446         'android/jni_array_unittest.cc',
447         'android/jni_string_unittest.cc',
448         'android/path_utils_unittest.cc',
449         'android/scoped_java_ref_unittest.cc',
450         'android/sys_utils_unittest.cc',
451         'async_socket_io_handler_unittest.cc',
452         'at_exit_unittest.cc',
453         'atomicops_unittest.cc',
454         'barrier_closure_unittest.cc',
455         'base64_unittest.cc',
456         'big_endian_unittest.cc',
457         'bind_unittest.cc',
458         'bind_unittest.nc',
459         'bits_unittest.cc',
460         'build_time_unittest.cc',
461         'callback_helpers_unittest.cc',
462         'callback_list_unittest.cc',
463         'callback_list_unittest.nc',
464         'callback_unittest.cc',
465         'callback_unittest.nc',
466         'cancelable_callback_unittest.cc',
467         'chromeos/memory_pressure_observer_chromeos_unittest.cc',
468         'command_line_unittest.cc',
469         'containers/adapters_unittest.cc',
470         'containers/hash_tables_unittest.cc',
471         'containers/linked_list_unittest.cc',
472         'containers/mru_cache_unittest.cc',
473         'containers/small_map_unittest.cc',
474         'containers/stack_container_unittest.cc',
475         'cpu_unittest.cc',
476         'debug/crash_logging_unittest.cc',
477         'debug/debugger_unittest.cc',
478         'debug/leak_tracker_unittest.cc',
479         'debug/proc_maps_linux_unittest.cc',
480         'debug/stack_trace_unittest.cc',
481         'debug/task_annotator_unittest.cc',
482         'deferred_sequenced_task_runner_unittest.cc',
483         'environment_unittest.cc',
484         'file_version_info_unittest.cc',
485         'files/dir_reader_posix_unittest.cc',
486         'files/file_path_unittest.cc',
487         'files/file_proxy_unittest.cc',
488         'files/file_unittest.cc',
489         'files/file_util_proxy_unittest.cc',
490         'files/file_util_unittest.cc',
491         'files/important_file_writer_unittest.cc',
492         'files/memory_mapped_file_unittest.cc',
493         'files/scoped_temp_dir_unittest.cc',
494         'gmock_unittest.cc',
495         'guid_unittest.cc',
496         'hash_unittest.cc',
497         'id_map_unittest.cc',
498         'i18n/break_iterator_unittest.cc',
499         'i18n/char_iterator_unittest.cc',
500         'i18n/case_conversion_unittest.cc',
501         'i18n/file_util_icu_unittest.cc',
502         'i18n/icu_string_conversions_unittest.cc',
503         'i18n/number_formatting_unittest.cc',
504         'i18n/rtl_unittest.cc',
505         'i18n/streaming_utf8_validator_unittest.cc',
506         'i18n/string_search_unittest.cc',
507         'i18n/time_formatting_unittest.cc',
508         'i18n/timezone_unittest.cc',
509         'ios/device_util_unittest.mm',
510         'ios/weak_nsobject_unittest.mm',
511         'json/json_parser_unittest.cc',
512         'json/json_reader_unittest.cc',
513         'json/json_value_converter_unittest.cc',
514         'json/json_value_serializer_unittest.cc',
515         'json/json_writer_unittest.cc',
516         'json/string_escape_unittest.cc',
517         'lazy_instance_unittest.cc',
518         'logging_unittest.cc',
519         'mac/bind_objc_block_unittest.mm',
520         'mac/foundation_util_unittest.mm',
521         'mac/libdispatch_task_runner_unittest.cc',
522         'mac/mac_util_unittest.mm',
523         'mac/objc_property_releaser_unittest.mm',
524         'mac/scoped_nsobject_unittest.mm',
525         'mac/scoped_objc_class_swizzler_unittest.mm',
526         'mac/scoped_sending_event_unittest.mm',
527         'md5_unittest.cc',
528         'memory/aligned_memory_unittest.cc',
529         'memory/discardable_memory_manager_unittest.cc',
530         'memory/discardable_memory_unittest.cc',
531         'memory/discardable_shared_memory_unittest.cc',
532         'memory/linked_ptr_unittest.cc',
533         'memory/ref_counted_memory_unittest.cc',
534         'memory/ref_counted_unittest.cc',
535         'memory/scoped_ptr_unittest.cc',
536         'memory/scoped_ptr_unittest.nc',
537         'memory/scoped_vector_unittest.cc',
538         'memory/shared_memory_unittest.cc',
539         'memory/singleton_unittest.cc',
540         'memory/weak_ptr_unittest.cc',
541         'memory/weak_ptr_unittest.nc',
542         'message_loop/message_loop_proxy_impl_unittest.cc',
543         'message_loop/message_loop_proxy_unittest.cc',
544         'message_loop/message_loop_unittest.cc',
545         'message_loop/message_pump_glib_unittest.cc',
546         'message_loop/message_pump_io_ios_unittest.cc',
547         'message_loop/message_pump_libevent_unittest.cc',
548         'metrics/sample_map_unittest.cc',
549         'metrics/sample_vector_unittest.cc',
550         'metrics/bucket_ranges_unittest.cc',
551         'metrics/field_trial_unittest.cc',
552         'metrics/histogram_base_unittest.cc',
553         'metrics/histogram_delta_serialization_unittest.cc',
554         'metrics/histogram_snapshot_manager_unittest.cc',
555         'metrics/histogram_unittest.cc',
556         'metrics/sparse_histogram_unittest.cc',
557         'metrics/stats_table_unittest.cc',
558         'metrics/statistics_recorder_unittest.cc',
559         'observer_list_unittest.cc',
560         'os_compat_android_unittest.cc',
561         'path_service_unittest.cc',
562         'pickle_unittest.cc',
563         'posix/file_descriptor_shuffle_unittest.cc',
564         'posix/unix_domain_socket_linux_unittest.cc',
565         'power_monitor/power_monitor_unittest.cc',
566         'prefs/default_pref_store_unittest.cc',
567         'prefs/json_pref_store_unittest.cc',
568         'prefs/mock_pref_change_callback.h',
569         'prefs/overlay_user_pref_store_unittest.cc',
570         'prefs/pref_change_registrar_unittest.cc',
571         'prefs/pref_member_unittest.cc',
572         'prefs/pref_notifier_impl_unittest.cc',
573         'prefs/pref_service_unittest.cc',
574         'prefs/pref_value_map_unittest.cc',
575         'prefs/pref_value_store_unittest.cc',
576         'prefs/scoped_user_pref_update_unittest.cc',
577         'process/memory_unittest.cc',
578         'process/memory_unittest_mac.h',
579         'process/memory_unittest_mac.mm',
580         'process/process_metrics_unittest.cc',
581         'process/process_metrics_unittest_ios.cc',
582         'process/process_unittest.cc',
583         'process/process_util_unittest.cc',
584         'profiler/tracked_time_unittest.cc',
585         'rand_util_unittest.cc',
586         'numerics/safe_numerics_unittest.cc',
587         'scoped_clear_errno_unittest.cc',
588         'scoped_generic_unittest.cc',
589         'scoped_native_library_unittest.cc',
590         'security_unittest.cc',
591         'sequence_checker_unittest.cc',
592         'sha1_unittest.cc',
593         'stl_util_unittest.cc',
594         'strings/nullable_string16_unittest.cc',
595         'strings/safe_sprintf_unittest.cc',
596         'strings/string16_unittest.cc',
597         'strings/stringprintf_unittest.cc',
598         'strings/string_number_conversions_unittest.cc',
599         'strings/string_piece_unittest.cc',
600         'strings/string_split_unittest.cc',
601         'strings/string_tokenizer_unittest.cc',
602         'strings/string_util_unittest.cc',
603         'strings/stringize_macros_unittest.cc',
604         'strings/sys_string_conversions_mac_unittest.mm',
605         'strings/sys_string_conversions_unittest.cc',
606         'strings/utf_offset_string_conversions_unittest.cc',
607         'strings/utf_string_conversions_unittest.cc',
608         'supports_user_data_unittest.cc',
609         'sync_socket_unittest.cc',
610         'synchronization/cancellation_flag_unittest.cc',
611         'synchronization/condition_variable_unittest.cc',
612         'synchronization/lock_unittest.cc',
613         'synchronization/waitable_event_unittest.cc',
614         'synchronization/waitable_event_watcher_unittest.cc',
615         'sys_info_unittest.cc',
616         'system_monitor/system_monitor_unittest.cc',
617         'task/cancelable_task_tracker_unittest.cc',
618         'task_runner_util_unittest.cc',
619         'template_util_unittest.cc',
620         'test/expectations/expectation_unittest.cc',
621         'test/expectations/parser_unittest.cc',
622         'test/histogram_tester_unittest.cc',
623         'test/test_pending_task_unittest.cc',
624         'test/test_reg_util_win_unittest.cc',
625         'test/trace_event_analyzer_unittest.cc',
626         'threading/non_thread_safe_unittest.cc',
627         'threading/platform_thread_unittest.cc',
628         'threading/sequenced_worker_pool_unittest.cc',
629         'threading/simple_thread_unittest.cc',
630         'threading/thread_checker_unittest.cc',
631         'threading/thread_collision_warner_unittest.cc',
632         'threading/thread_id_name_manager_unittest.cc',
633         'threading/thread_local_storage_unittest.cc',
634         'threading/thread_local_unittest.cc',
635         'threading/thread_unittest.cc',
636         'threading/watchdog_unittest.cc',
637         'threading/worker_pool_posix_unittest.cc',
638         'threading/worker_pool_unittest.cc',
639         'time/pr_time_unittest.cc',
640         'time/time_unittest.cc',
641         'time/time_win_unittest.cc',
642         'timer/hi_res_timer_manager_unittest.cc',
643         'timer/mock_timer_unittest.cc',
644         'timer/timer_unittest.cc',
645         'tools_sanity_unittest.cc',
646         'trace_event/trace_event_argument_unittest.cc',
647         'trace_event/trace_event_memory_unittest.cc',
648         'trace_event/trace_event_synthetic_delay_unittest.cc',
649         'trace_event/trace_event_system_stats_monitor_unittest.cc',
650         'trace_event/trace_event_unittest.cc',
651         'trace_event/trace_event_win_unittest.cc',
652         'tracked_objects_unittest.cc',
653         'tuple_unittest.cc',
654         'values_unittest.cc',
655         'version_unittest.cc',
656         'vlog_unittest.cc',
657         'win/dllmain.cc',
658         'win/enum_variant_unittest.cc',
659         'win/event_trace_consumer_unittest.cc',
660         'win/event_trace_controller_unittest.cc',
661         'win/event_trace_provider_unittest.cc',
662         'win/i18n_unittest.cc',
663         'win/iunknown_impl_unittest.cc',
664         'win/message_window_unittest.cc',
665         'win/object_watcher_unittest.cc',
666         'win/pe_image_unittest.cc',
667         'win/registry_unittest.cc',
668         'win/scoped_bstr_unittest.cc',
669         'win/scoped_comptr_unittest.cc',
670         'win/scoped_process_information_unittest.cc',
671         'win/scoped_variant_unittest.cc',
672         'win/shortcut_unittest.cc',
673         'win/startup_information_unittest.cc',
674         'win/win_util_unittest.cc',
675         'win/wrapped_window_proc_unittest.cc',
676       ],
677       'dependencies': [
678         'base',
679         'base_i18n',
680         'base_message_loop_tests',
681         'base_prefs',
682         'base_prefs_test_support',
683         'base_static',
684         'run_all_unittests',
685         'test_support_base',
686         'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
687         '../testing/gmock.gyp:gmock',
688         '../testing/gtest.gyp:gtest',
689         '../third_party/icu/icu.gyp:icui18n',
690         '../third_party/icu/icu.gyp:icuuc',
691       ],
692       'includes': ['../build/nocompile.gypi'],
693       'variables': {
694          # TODO(ajwong): Is there a way to autodetect this?
695         'module_dir': 'base'
696       },
697       'conditions': [
698         ['OS == "android"', {
699           'dependencies': [
700             'android/jni_generator/jni_generator.gyp:jni_generator_tests',
701             '../testing/android/native_test.gyp:native_test_native_code',
702           ],
703         }],
704         ['OS == "ios" and _toolset != "host"', {
705           'sources/': [
706             # Only test the iOS-meaningful portion of process_utils.
707             ['exclude', '^process/memory_unittest'],
708             ['exclude', '^process/process_unittest\\.cc$'],
709             ['exclude', '^process/process_util_unittest\\.cc$'],
710             ['include', '^process/process_util_unittest_ios\\.cc$'],
711             # Requires spawning processes.
712             ['exclude', '^metrics/stats_table_unittest\\.cc$'],
713             # iOS does not use message_pump_libevent.
714             ['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$'],
715           ],
716           'actions': [
717             {
718               'action_name': 'copy_test_data',
719               'variables': {
720                 'test_data_files': [
721                   'test/data',
722                 ],
723                 'test_data_prefix': 'base',
724               },
725               'includes': [ '../build/copy_test_data_ios.gypi' ],
726             },
727           ],
728         }],
729         ['desktop_linux == 1 or chromeos == 1', {
730           'defines': [
731             'USE_SYMBOLIZE',
732           ],
733           'sources!': [
734             'file_version_info_unittest.cc',
735           ],
736           'conditions': [
737             [ 'desktop_linux==1', {
738               'sources': [
739                 'nix/xdg_util_unittest.cc',
740               ],
741             }],
742           ],
743         }],
744         ['use_glib == 1', {
745           'dependencies': [
746             '../build/linux/system.gyp:glib',
747           ],
748         }, {  # use_glib == 0
749           'sources!': [
750             'message_loop/message_pump_glib_unittest.cc',
751           ]
752         }],
753         ['use_ozone == 1', {
754           'sources!': [
755             'message_loop/message_pump_glib_unittest.cc',
756           ]
757         }],
758         ['OS == "linux" and use_allocator!="none"', {
759             'dependencies': [
760               'allocator/allocator.gyp:allocator',
761             ],
762           },
763         ],
764         ['OS == "win"', {
765           'sources!': [
766             'file_descriptor_shuffle_unittest.cc',
767             'files/dir_reader_posix_unittest.cc',
768             'threading/worker_pool_posix_unittest.cc',
769             'message_loop/message_pump_libevent_unittest.cc',
770           ],
771           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
772           'msvs_disabled_warnings': [
773             4267,
774           ],
775           'conditions': [
776             # This is needed so base_unittests uses the allocator shim, as
777             # SecurityTest.MemoryAllocationRestriction* tests are dependent
778             # on tcmalloc.
779             # TODO(wfh): crbug.com/246278 Move tcmalloc specific tests into
780             # their own test suite.
781             ['win_use_allocator_shim==1', {
782               'dependencies': [
783                 'allocator/allocator.gyp:allocator',
784               ],
785             }],
786             ['icu_use_data_file_flag==0', {
787               # This is needed to trigger the dll copy step on windows.
788               # TODO(mark): This should not be necessary.
789               'dependencies': [
790                 '../third_party/icu/icu.gyp:icudata',
791               ],
792             }],
793             ['incremental_chrome_dll', {
794               'defines': [
795                 # Used only to workaround a linker bug, do not use this
796                 # otherwise, and don't make it broader scope. See
797                 # http://crbug.com/251251.
798                 'INCREMENTAL_LINKING',
799               ],
800             }],
801           ],
802         }, {  # OS != "win"
803           'dependencies': [
804             '../third_party/libevent/libevent.gyp:libevent'
805           ],
806         }],
807       ],  # conditions
808       'target_conditions': [
809         ['OS == "ios" and _toolset != "host"', {
810           'sources/': [
811             # Pull in specific Mac files for iOS (which have been filtered out
812             # by file name rules).
813             ['include', '^mac/bind_objc_block_unittest\\.mm$'],
814             ['include', '^mac/foundation_util_unittest\\.mm$',],
815             ['include', '^mac/objc_property_releaser_unittest\\.mm$'],
816             ['include', '^mac/scoped_nsobject_unittest\\.mm$'],
817             ['include', '^sys_string_conversions_mac_unittest\\.mm$'],
818           ],
819         }],
820         ['OS == "android" and _toolset == "target"', {
821           'sources': [
822             'memory/discardable_memory_ashmem_allocator_unittest.cc',
823           ],
824         }],
825         ['OS == "android"', {
826           'sources/': [
827             ['include', '^debug/proc_maps_linux_unittest\\.cc$'],
828           ],
829         }],
830       ],  # target_conditions
831     },
832     {
833       'target_name': 'base_perftests',
834       'type': '<(gtest_target_type)',
835       'dependencies': [
836         'base',
837         'test_support_base',
838         '../testing/gtest.gyp:gtest',
839       ],
840       'sources': [
841         'threading/thread_perftest.cc',
842         'message_loop/message_pump_perftest.cc',
843         'test/run_all_unittests.cc',
844         '../testing/perf/perf_test.cc'
845       ],
846       'conditions': [
847         ['OS == "android"', {
848           'dependencies': [
849             '../testing/android/native_test.gyp:native_test_native_code',
850           ],
851         }],
852       ],
853     },
854     {
855       'target_name': 'base_i18n_perftests',
856       'type': '<(gtest_target_type)',
857       'dependencies': [
858         'test_support_base',
859         'test_support_perf',
860         '../testing/gtest.gyp:gtest',
861         'base_i18n',
862         'base',
863       ],
864       'sources': [
865         'i18n/streaming_utf8_validator_perftest.cc',
866       ],
867     },
868     {
869       # GN: //base/test:test_support
870       'target_name': 'test_support_base',
871       'type': 'static_library',
872       'dependencies': [
873         'base',
874         'base_static',
875         'base_i18n',
876         '../testing/gmock.gyp:gmock',
877         '../testing/gtest.gyp:gtest',
878         '../third_party/libxml/libxml.gyp:libxml',
879         'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
880       ],
881       'export_dependent_settings': [
882         'base',
883       ],
884       'conditions': [
885         ['os_posix==0', {
886           'sources!': [
887             'test/scoped_locale.cc',
888             'test/scoped_locale.h',
889           ],
890         }],
891         ['os_bsd==1', {
892           'sources!': [
893             'test/test_file_util_linux.cc',
894           ],
895         }],
896         ['OS == "android"', {
897           'dependencies': [
898             'base_unittests_jni_headers',
899             'base_java_unittest_support',
900           ],
901         }],
902         ['OS == "ios"', {
903           'toolsets': ['host', 'target'],
904         }],
905       ],
906       'sources': [
907         'test/expectations/expectation.cc',
908         'test/expectations/expectation.h',
909         'test/expectations/parser.cc',
910         'test/expectations/parser.h',
911         'test/gtest_util.cc',
912         'test/gtest_util.h',
913         'test/gtest_xml_util.cc',
914         'test/gtest_xml_util.h',
915         'test/launcher/test_launcher.cc',
916         'test/launcher/test_launcher.h',
917         'test/launcher/test_result.cc',
918         'test/launcher/test_result.h',
919         'test/launcher/test_results_tracker.cc',
920         'test/launcher/test_results_tracker.h',
921         'test/launcher/unit_test_launcher.cc',
922         'test/launcher/unit_test_launcher.h',
923         'test/launcher/unit_test_launcher_ios.cc',
924         'test/mock_chrome_application_mac.h',
925         'test/mock_chrome_application_mac.mm',
926         'test/mock_devices_changed_observer.cc',
927         'test/mock_devices_changed_observer.h',
928         'test/multiprocess_test.cc',
929         'test/multiprocess_test.h',
930         'test/multiprocess_test_android.cc',
931         'test/null_task_runner.cc',
932         'test/null_task_runner.h',
933         'test/opaque_ref_counted.cc',
934         'test/opaque_ref_counted.h',
935         'test/perf_log.cc',
936         'test/perf_log.h',
937         'test/perf_test_suite.cc',
938         'test/perf_test_suite.h',
939         'test/perf_time_logger.cc',
940         'test/perf_time_logger.h',
941         'test/power_monitor_test_base.cc',
942         'test/power_monitor_test_base.h',
943         'test/scoped_locale.cc',
944         'test/scoped_locale.h',
945         'test/scoped_path_override.cc',
946         'test/scoped_path_override.h',
947         'test/sequenced_task_runner_test_template.cc',
948         'test/sequenced_task_runner_test_template.h',
949         'test/sequenced_worker_pool_owner.cc',
950         'test/sequenced_worker_pool_owner.h',
951         'test/simple_test_clock.cc',
952         'test/simple_test_clock.h',
953         'test/simple_test_tick_clock.cc',
954         'test/simple_test_tick_clock.h',
955         'test/histogram_tester.cc',
956         'test/histogram_tester.h',
957         'test/task_runner_test_template.cc',
958         'test/task_runner_test_template.h',
959         'test/test_file_util.cc',
960         'test/test_file_util.h',
961         'test/test_file_util_android.cc',
962         'test/test_file_util_linux.cc',
963         'test/test_file_util_mac.cc',
964         'test/test_file_util_posix.cc',
965         'test/test_file_util_win.cc',
966         'test/test_io_thread.cc',
967         'test/test_io_thread.h',
968         'test/test_listener_ios.h',
969         'test/test_listener_ios.mm',
970         'test/test_mock_time_task_runner.cc',
971         'test/test_mock_time_task_runner.h',
972         'test/test_pending_task.cc',
973         'test/test_pending_task.h',
974         'test/test_reg_util_win.cc',
975         'test/test_reg_util_win.h',
976         'test/test_shortcut_win.cc',
977         'test/test_shortcut_win.h',
978         'test/test_simple_task_runner.cc',
979         'test/test_simple_task_runner.h',
980         'test/test_suite.cc',
981         'test/test_suite.h',
982         'test/test_support_android.cc',
983         'test/test_support_android.h',
984         'test/test_support_ios.h',
985         'test/test_support_ios.mm',
986         'test/test_switches.cc',
987         'test/test_switches.h',
988         'test/test_timeouts.cc',
989         'test/test_timeouts.h',
990         'test/thread_test_helper.cc',
991         'test/thread_test_helper.h',
992         'test/trace_event_analyzer.cc',
993         'test/trace_event_analyzer.h',
994         'test/trace_to_file.cc',
995         'test/trace_to_file.h',
996         'test/values_test_util.cc',
997         'test/values_test_util.h',
998       ],
999       'target_conditions': [
1000         ['OS == "ios"', {
1001           'sources/': [
1002             # Pull in specific Mac files for iOS (which have been filtered out
1003             # by file name rules).
1004             ['include', '^test/test_file_util_mac\\.cc$'],
1005           ],
1006         }],
1007         ['OS == "ios" and _toolset == "target"', {
1008           'sources!': [
1009             # iOS uses its own unit test launcher.
1010             'test/launcher/unit_test_launcher.cc',
1011           ],
1012         }],
1013         ['OS == "ios" and _toolset == "host"', {
1014           'sources!': [
1015             'test/launcher/unit_test_launcher_ios.cc',
1016             'test/test_support_ios.h',
1017             'test/test_support_ios.mm',
1018           ],
1019         }],
1020       ],  # target_conditions
1021     },
1022     {
1023       'target_name': 'test_support_perf',
1024       'type': 'static_library',
1025       'dependencies': [
1026         'base',
1027         'test_support_base',
1028         '../testing/gtest.gyp:gtest',
1029       ],
1030       'sources': [
1031         'test/run_all_perftests.cc',
1032       ],
1033       'direct_dependent_settings': {
1034         'defines': [
1035           'PERF_TEST',
1036         ],
1037       },
1038     },
1039   ],
1040   'conditions': [
1041     ['OS=="ios" and "<(GENERATOR)"=="ninja"', {
1042       'targets': [
1043         {
1044           'target_name': 'test_launcher',
1045           'toolsets': ['host'],
1046           'type': 'executable',
1047           'dependencies': [
1048             'test_support_base',
1049           ],
1050           'sources': [
1051             'test/launcher/test_launcher_ios.cc',
1052           ],
1053         },
1054       ],
1055     }],
1056     ['OS!="ios"', {
1057       'targets': [
1058         {
1059           'target_name': 'check_example',
1060           'type': 'executable',
1061           'sources': [
1062             'check_example.cc',
1063           ],
1064           'dependencies': [
1065             'base',
1066           ],
1067         },
1068         {
1069           'target_name': 'build_utf8_validator_tables',
1070           'type': 'executable',
1071           'toolsets': ['host'],
1072           'dependencies': [
1073             'base',
1074             '../third_party/icu/icu.gyp:icuuc',
1075           ],
1076           'sources': [
1077             'i18n/build_utf8_validator_tables.cc'
1078           ],
1079         },
1080       ],
1081     }],
1082     ['OS == "win" and target_arch=="ia32"', {
1083       'targets': [
1084         # The base_win64 target here allows us to use base for Win64 targets
1085         # (the normal build is 32 bits).
1086         {
1087           'target_name': 'base_win64',
1088           'type': '<(component)',
1089           'variables': {
1090             'base_target': 1,
1091           },
1092           'dependencies': [
1093             'base_static_win64',
1094             'allocator/allocator.gyp:allocator_extension_thunks_win64',
1095             '../third_party/modp_b64/modp_b64.gyp:modp_b64_win64',
1096             'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations_win64',
1097           ],
1098           # TODO(gregoryd): direct_dependent_settings should be shared with the
1099           # 32-bit target, but it doesn't work due to a bug in gyp
1100           'direct_dependent_settings': {
1101             'include_dirs': [
1102               '..',
1103             ],
1104           },
1105           'defines': [
1106             'BASE_WIN64',
1107             '<@(nacl_win64_defines)',
1108           ],
1109           'configurations': {
1110             'Common_Base': {
1111               'msvs_target_platform': 'x64',
1112             },
1113           },
1114           'conditions': [
1115             ['component == "shared_library"', {
1116               'sources!': [
1117                 'debug/debug_on_start_win.cc',
1118               ],
1119             }],
1120           ],
1121           # Specify delayload for base_win64.dll.
1122           'msvs_settings': {
1123             'VCLinkerTool': {
1124               'DelayLoadDLLs': [
1125                 'cfgmgr32.dll',
1126                 'powrprof.dll',
1127                 'setupapi.dll',
1128               ],
1129               'AdditionalDependencies': [
1130                 'cfgmgr32.lib',
1131                 'powrprof.lib',
1132                 'setupapi.lib',
1133               ],
1134             },
1135           },
1136           # Specify delayload for components that link with base_win64.lib.
1137           'all_dependent_settings': {
1138             'msvs_settings': {
1139               'VCLinkerTool': {
1140                 'DelayLoadDLLs': [
1141                   'cfgmgr32.dll',
1142                   'powrprof.dll',
1143                   'setupapi.dll',
1144                 ],
1145                 'AdditionalDependencies': [
1146                   'cfgmgr32.lib',
1147                   'powrprof.lib',
1148                   'setupapi.lib',
1149                 ],
1150               },
1151             },
1152           },
1153           # TODO(rvargas): Bug 78117. Remove this.
1154           'msvs_disabled_warnings': [
1155             4244,
1156             4996,
1157             4267,
1158           ],
1159           'sources': [
1160             'async_socket_io_handler.h',
1161             'async_socket_io_handler_posix.cc',
1162             'async_socket_io_handler_win.cc',
1163             'auto_reset.h',
1164             'linux_util.cc',
1165             'linux_util.h',
1166             'md5.cc',
1167             'md5.h',
1168             'message_loop/message_pump_libevent.cc',
1169             'message_loop/message_pump_libevent.h',
1170             'metrics/field_trial.cc',
1171             'metrics/field_trial.h',
1172             'posix/file_descriptor_shuffle.cc',
1173             'posix/file_descriptor_shuffle.h',
1174             'sync_socket.h',
1175             'sync_socket_posix.cc',
1176             'sync_socket_win.cc',
1177             'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
1178             'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
1179           ],
1180         },
1181         {
1182           'target_name': 'base_i18n_nacl_win64',
1183           'type': '<(component)',
1184           # TODO(gregoryd): direct_dependent_settings should be shared with the
1185           # 32-bit target, but it doesn't work due to a bug in gyp
1186           'direct_dependent_settings': {
1187             'include_dirs': [
1188               '..',
1189             ],
1190           },
1191           'defines': [
1192             '<@(nacl_win64_defines)',
1193             'BASE_I18N_IMPLEMENTATION',
1194           ],
1195           'include_dirs': [
1196             '..',
1197           ],
1198           'sources': [
1199             'i18n/icu_util_nacl_win64.cc',
1200           ],
1201           'configurations': {
1202             'Common_Base': {
1203               'msvs_target_platform': 'x64',
1204             },
1205           },
1206         },
1207         {
1208           # TODO(rvargas): Remove this when gyp finally supports a clean model.
1209           # See bug 36232.
1210           'target_name': 'base_static_win64',
1211           'type': 'static_library',
1212           'sources': [
1213             'base_switches.cc',
1214             'base_switches.h',
1215             'win/pe_image.cc',
1216             'win/pe_image.h',
1217           ],
1218           'sources!': [
1219             # base64.cc depends on modp_b64.
1220             'base64.cc',
1221           ],
1222           'include_dirs': [
1223             '..',
1224           ],
1225           'configurations': {
1226             'Common_Base': {
1227               'msvs_target_platform': 'x64',
1228             },
1229           },
1230           'defines': [
1231             '<@(nacl_win64_defines)',
1232           ],
1233           # TODO(rvargas): Bug 78117. Remove this.
1234           'msvs_disabled_warnings': [
1235             4244,
1236           ],
1237         },
1238       ],
1239     }],
1240     ['os_posix==1 and OS!="mac" and OS!="ios"', {
1241       'targets': [
1242         {
1243           'target_name': 'symbolize',
1244           'type': 'static_library',
1245           'toolsets': ['host', 'target'],
1246           'variables': {
1247             'chromium_code': 0,
1248           },
1249           'conditions': [
1250             ['OS == "solaris"', {
1251               'include_dirs': [
1252                 '/usr/gnu/include',
1253                 '/usr/gnu/include/libelf',
1254               ],
1255             },],
1256           ],
1257           'cflags': [
1258             '-Wno-sign-compare',
1259           ],
1260           'cflags!': [
1261             '-Wextra',
1262           ],
1263           'defines': [
1264             'GLOG_BUILD_CONFIG_INCLUDE="build/build_config.h"',
1265           ],
1266           'sources': [
1267             'third_party/symbolize/config.h',
1268             'third_party/symbolize/demangle.cc',
1269             'third_party/symbolize/demangle.h',
1270             'third_party/symbolize/glog/logging.h',
1271             'third_party/symbolize/glog/raw_logging.h',
1272             'third_party/symbolize/symbolize.cc',
1273             'third_party/symbolize/symbolize.h',
1274             'third_party/symbolize/utilities.h',
1275           ],
1276           'include_dirs': [
1277             '..',
1278           ],
1279           'includes': [
1280             '../build/android/increase_size_for_speed.gypi',
1281           ],
1282         },
1283         {
1284           'target_name': 'xdg_mime',
1285           'type': 'static_library',
1286           'toolsets': ['host', 'target'],
1287           'variables': {
1288             'chromium_code': 0,
1289           },
1290           'cflags!': [
1291             '-Wextra',
1292           ],
1293           'sources': [
1294             'third_party/xdg_mime/xdgmime.c',
1295             'third_party/xdg_mime/xdgmime.h',
1296             'third_party/xdg_mime/xdgmimealias.c',
1297             'third_party/xdg_mime/xdgmimealias.h',
1298             'third_party/xdg_mime/xdgmimecache.c',
1299             'third_party/xdg_mime/xdgmimecache.h',
1300             'third_party/xdg_mime/xdgmimeglob.c',
1301             'third_party/xdg_mime/xdgmimeglob.h',
1302             'third_party/xdg_mime/xdgmimeicon.c',
1303             'third_party/xdg_mime/xdgmimeicon.h',
1304             'third_party/xdg_mime/xdgmimeint.c',
1305             'third_party/xdg_mime/xdgmimeint.h',
1306             'third_party/xdg_mime/xdgmimemagic.c',
1307             'third_party/xdg_mime/xdgmimemagic.h',
1308             'third_party/xdg_mime/xdgmimeparent.c',
1309             'third_party/xdg_mime/xdgmimeparent.h',
1310           ],
1311           'includes': [
1312             '../build/android/increase_size_for_speed.gypi',
1313           ],
1314         },
1315       ],
1316     }],
1317     ['OS == "android"', {
1318       'targets': [
1319         {
1320           # GN: //base:base_jni_headers
1321           'target_name': 'base_jni_headers',
1322           'type': 'none',
1323           'sources': [
1324             'android/java/src/org/chromium/base/ApplicationStatus.java',
1325             'android/java/src/org/chromium/base/BuildInfo.java',
1326             'android/java/src/org/chromium/base/CommandLine.java',
1327             'android/java/src/org/chromium/base/ContentUriUtils.java',
1328             'android/java/src/org/chromium/base/CpuFeatures.java',
1329             'android/java/src/org/chromium/base/EventLog.java',
1330             'android/java/src/org/chromium/base/FieldTrialList.java',
1331             'android/java/src/org/chromium/base/ImportantFileWriterAndroid.java',
1332             'android/java/src/org/chromium/base/JNIUtils.java',
1333             'android/java/src/org/chromium/base/JavaHandlerThread.java',
1334             'android/java/src/org/chromium/base/LocaleUtils.java',
1335             'android/java/src/org/chromium/base/MemoryPressureListener.java',
1336             'android/java/src/org/chromium/base/PathService.java',
1337             'android/java/src/org/chromium/base/PathUtils.java',
1338             'android/java/src/org/chromium/base/PowerMonitor.java',
1339             'android/java/src/org/chromium/base/SysUtils.java',
1340             'android/java/src/org/chromium/base/SystemMessageHandler.java',
1341             'android/java/src/org/chromium/base/ThreadUtils.java',
1342             'android/java/src/org/chromium/base/TraceEvent.java',
1343             'android/java/src/org/chromium/base/library_loader/LibraryLoader.java',
1344             'android/java/src/org/chromium/base/metrics/RecordHistogram.java',
1345           ],
1346           'variables': {
1347             'jni_gen_package': 'base',
1348           },
1349           'includes': [ '../build/jni_generator.gypi' ],
1350         },
1351         {
1352           # TODO(GN)
1353           'target_name': 'base_unittests_jni_headers',
1354           'type': 'none',
1355           'sources': [
1356             'test/android/java/src/org/chromium/base/ContentUriTestUtils.java',
1357           ],
1358           'variables': {
1359             'jni_gen_package': 'base',
1360           },
1361           'includes': [ '../build/jni_generator.gypi' ],
1362         },
1363         {
1364           # GN: //base:base_native_libraries_gen
1365           'target_name': 'base_native_libraries_gen',
1366           'type': 'none',
1367           'sources': [
1368             'android/java/templates/NativeLibraries.template',
1369           ],
1370           'variables': {
1371             'package_name': 'org/chromium/base/library_loader',
1372             'template_deps': [],
1373           },
1374           'includes': [ '../build/android/java_cpp_template.gypi' ],
1375         },
1376         {
1377           # GN: //base:base_java
1378           'target_name': 'base_java',
1379           'type': 'none',
1380           'variables': {
1381             'java_in_dir': '../base/android/java',
1382             'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1383           },
1384           'dependencies': [
1385             'base_java_application_state',
1386             'base_java_library_load_from_apk_status_codes',
1387             'base_java_memory_pressure_level',
1388             'base_native_libraries_gen',
1389           ],
1390           'includes': [ '../build/java.gypi' ],
1391           'conditions': [
1392             ['android_webview_build==0', {
1393               'dependencies': [
1394                 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1395               ],
1396             }]
1397           ],
1398         },
1399         {
1400           # GN: //base:base_java_unittest_support
1401           'target_name': 'base_java_unittest_support',
1402           'type': 'none',
1403           'dependencies': [
1404             'base_java',
1405           ],
1406           'variables': {
1407             'java_in_dir': '../base/test/android/java',
1408           },
1409           'includes': [ '../build/java.gypi' ],
1410         },
1411         {
1412           # GN: //base:base_android_java_enums_srcjar
1413           'target_name': 'base_java_application_state',
1414           'type': 'none',
1415           'variables': {
1416             'source_file': 'android/application_status_listener.h',
1417           },
1418           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1419         },
1420         {
1421           # GN: //base:base_android_java_enums_srcjar
1422           'target_name': 'base_java_library_load_from_apk_status_codes',
1423           'type': 'none',
1424           'variables': {
1425             'source_file': 'android/library_loader/library_load_from_apk_status_codes.h'
1426           },
1427           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1428         },
1429         {
1430           # GN: //base:base_android_java_enums_srcjar
1431           'target_name': 'base_java_memory_pressure_level',
1432           'type': 'none',
1433           'variables': {
1434             'source_file': 'memory/memory_pressure_listener.h',
1435           },
1436           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1437         },
1438         {
1439           # GN: //base:base_java_test_support
1440           'target_name': 'base_java_test_support',
1441           'type': 'none',
1442           'dependencies': [
1443             'base_java',
1444           ],
1445           'variables': {
1446             'java_in_dir': '../base/test/android/javatests',
1447           },
1448           'includes': [ '../build/java.gypi' ],
1449         },
1450         {
1451           # GN: //base:base_javatests
1452           'target_name': 'base_javatests',
1453           'type': 'none',
1454           'dependencies': [
1455             'base_java',
1456             'base_java_test_support',
1457           ],
1458           'variables': {
1459             'java_in_dir': '../base/android/javatests',
1460           },
1461           'includes': [ '../build/java.gypi' ],
1462         },
1463         {
1464           # GN: //base/android/linker:chromium_android_linker
1465           'target_name': 'chromium_android_linker',
1466           'type': 'shared_library',
1467           'conditions': [
1468             # Avoid breaking the webview build because it
1469             # does not have <(android_ndk_root)/crazy_linker.gyp.
1470             # Note that webview never uses the linker anyway.
1471             ['android_webview_build == 0', {
1472               'sources': [
1473                 'android/linker/linker_jni.cc',
1474               ],
1475               # The crazy linker is never instrumented.
1476               'cflags!': [
1477                 '-finstrument-functions',
1478               ],
1479               'dependencies': [
1480                 # The NDK contains the crazy_linker here:
1481                 #   '<(android_ndk_root)/crazy_linker.gyp:crazy_linker'
1482                 # However, we use our own fork.  See bug 384700.
1483                 '../third_party/android_crazy_linker/crazy_linker.gyp:crazy_linker',
1484               ],
1485             }],
1486           ],
1487         },
1488         {
1489           # TODO(GN)
1490           'target_name': 'base_perftests_apk',
1491           'type': 'none',
1492           'dependencies': [
1493             'base_perftests',
1494           ],
1495           'variables': {
1496             'test_suite_name': 'base_perftests',
1497           },
1498           'includes': [ '../build/apk_test.gypi' ],
1499         },
1500         {
1501           # GN: //base:base_unittests_apk
1502           'target_name': 'base_unittests_apk',
1503           'type': 'none',
1504           'dependencies': [
1505             'base_java',
1506             'base_unittests',
1507           ],
1508           'variables': {
1509             'test_suite_name': 'base_unittests',
1510           },
1511           'includes': [ '../build/apk_test.gypi' ],
1512         },
1513       ],
1514     }],
1515     ['OS == "win"', {
1516       'targets': [
1517         {
1518           'target_name': 'debug_message',
1519           'type': 'executable',
1520           'sources': [
1521             'debug_message.cc',
1522           ],
1523           'msvs_settings': {
1524             'VCLinkerTool': {
1525               'SubSystem': '2',         # Set /SUBSYSTEM:WINDOWS
1526             },
1527           },
1528         },
1529       ],
1530     }],
1531     ['test_isolation_mode != "noop"', {
1532       'targets': [
1533         {
1534           'target_name': 'base_unittests_run',
1535           'type': 'none',
1536           'dependencies': [
1537             'base_unittests',
1538           ],
1539           'includes': [
1540             '../build/isolate.gypi',
1541           ],
1542           'sources': [
1543             'base_unittests.isolate',
1544           ],
1545           'conditions': [
1546             ['use_x11 == 1', {
1547               'dependencies': [
1548                 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1549               ],
1550             }],
1551           ],
1552         },
1553       ],
1554     }],
1555   ],