Roll src/third_party/WebKit 430fae8:247916b (svn 190268:190272)
[chromium-blink-merge.git] / base / base.gyp
blob5da4f198ab38e520b790acbc16f328b1acb186ca
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         'i18n/break_iterator_unittest.cc',
498         'i18n/case_conversion_unittest.cc',
499         'i18n/char_iterator_unittest.cc',
500         'i18n/file_util_icu_unittest.cc',
501         'i18n/icu_string_conversions_unittest.cc',
502         'i18n/number_formatting_unittest.cc',
503         'i18n/rtl_unittest.cc',
504         'i18n/streaming_utf8_validator_unittest.cc',
505         'i18n/string_search_unittest.cc',
506         'i18n/time_formatting_unittest.cc',
507         'i18n/timezone_unittest.cc',
508         'id_map_unittest.cc',
509         'ios/crb_protocol_observers_unittest.mm',
510         'ios/device_util_unittest.mm',
511         'ios/weak_nsobject_unittest.mm',
512         'json/json_parser_unittest.cc',
513         'json/json_reader_unittest.cc',
514         'json/json_value_converter_unittest.cc',
515         'json/json_value_serializer_unittest.cc',
516         'json/json_writer_unittest.cc',
517         'json/string_escape_unittest.cc',
518         'lazy_instance_unittest.cc',
519         'logging_unittest.cc',
520         'mac/bind_objc_block_unittest.mm',
521         'mac/foundation_util_unittest.mm',
522         'mac/libdispatch_task_runner_unittest.cc',
523         'mac/mac_util_unittest.mm',
524         'mac/objc_property_releaser_unittest.mm',
525         'mac/scoped_nsobject_unittest.mm',
526         'mac/scoped_objc_class_swizzler_unittest.mm',
527         'mac/scoped_sending_event_unittest.mm',
528         'md5_unittest.cc',
529         'memory/aligned_memory_unittest.cc',
530         'memory/discardable_memory_manager_unittest.cc',
531         'memory/discardable_memory_unittest.cc',
532         'memory/discardable_shared_memory_unittest.cc',
533         'memory/linked_ptr_unittest.cc',
534         'memory/ref_counted_memory_unittest.cc',
535         'memory/ref_counted_unittest.cc',
536         'memory/scoped_ptr_unittest.cc',
537         'memory/scoped_ptr_unittest.nc',
538         'memory/scoped_vector_unittest.cc',
539         'memory/shared_memory_unittest.cc',
540         'memory/singleton_unittest.cc',
541         'memory/weak_ptr_unittest.cc',
542         'memory/weak_ptr_unittest.nc',
543         'message_loop/message_loop_proxy_impl_unittest.cc',
544         'message_loop/message_loop_proxy_unittest.cc',
545         'message_loop/message_loop_unittest.cc',
546         'message_loop/message_pump_glib_unittest.cc',
547         'message_loop/message_pump_io_ios_unittest.cc',
548         'message_loop/message_pump_libevent_unittest.cc',
549         'metrics/bucket_ranges_unittest.cc',
550         'metrics/field_trial_unittest.cc',
551         'metrics/histogram_base_unittest.cc',
552         'metrics/histogram_delta_serialization_unittest.cc',
553         'metrics/histogram_macros_unittest.cc',
554         'metrics/histogram_snapshot_manager_unittest.cc',
555         'metrics/histogram_unittest.cc',
556         'metrics/sample_map_unittest.cc',
557         'metrics/sample_vector_unittest.cc',
558         'metrics/sparse_histogram_unittest.cc',
559         'metrics/statistics_recorder_unittest.cc',
560         'numerics/safe_numerics_unittest.cc',
561         'observer_list_unittest.cc',
562         'os_compat_android_unittest.cc',
563         'path_service_unittest.cc',
564         'pickle_unittest.cc',
565         'posix/file_descriptor_shuffle_unittest.cc',
566         'posix/unix_domain_socket_linux_unittest.cc',
567         'power_monitor/power_monitor_unittest.cc',
568         'prefs/default_pref_store_unittest.cc',
569         'prefs/json_pref_store_unittest.cc',
570         'prefs/mock_pref_change_callback.h',
571         'prefs/overlay_user_pref_store_unittest.cc',
572         'prefs/pref_change_registrar_unittest.cc',
573         'prefs/pref_member_unittest.cc',
574         'prefs/pref_notifier_impl_unittest.cc',
575         'prefs/pref_service_unittest.cc',
576         'prefs/pref_value_map_unittest.cc',
577         'prefs/pref_value_store_unittest.cc',
578         'prefs/scoped_user_pref_update_unittest.cc',
579         'process/memory_unittest.cc',
580         'process/memory_unittest_mac.h',
581         'process/memory_unittest_mac.mm',
582         'process/process_metrics_unittest.cc',
583         'process/process_metrics_unittest_ios.cc',
584         'process/process_unittest.cc',
585         'process/process_util_unittest.cc',
586         'profiler/tracked_time_unittest.cc',
587         'rand_util_unittest.cc',
588         'scoped_clear_errno_unittest.cc',
589         'scoped_generic_unittest.cc',
590         'scoped_native_library_unittest.cc',
591         'security_unittest.cc',
592         'sequence_checker_unittest.cc',
593         'sha1_unittest.cc',
594         'stl_util_unittest.cc',
595         'strings/nullable_string16_unittest.cc',
596         'strings/safe_sprintf_unittest.cc',
597         'strings/string16_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/stringprintf_unittest.cc',
605         'strings/sys_string_conversions_mac_unittest.mm',
606         'strings/sys_string_conversions_unittest.cc',
607         'strings/utf_offset_string_conversions_unittest.cc',
608         'strings/utf_string_conversions_unittest.cc',
609         'supports_user_data_unittest.cc',
610         'sync_socket_unittest.cc',
611         'synchronization/cancellation_flag_unittest.cc',
612         'synchronization/condition_variable_unittest.cc',
613         'synchronization/lock_unittest.cc',
614         'synchronization/waitable_event_unittest.cc',
615         'synchronization/waitable_event_watcher_unittest.cc',
616         'sys_info_unittest.cc',
617         'system_monitor/system_monitor_unittest.cc',
618         'task/cancelable_task_tracker_unittest.cc',
619         'task_runner_util_unittest.cc',
620         'template_util_unittest.cc',
621         'test/expectations/expectation_unittest.cc',
622         'test/expectations/parser_unittest.cc',
623         'test/histogram_tester_unittest.cc',
624         'test/test_pending_task_unittest.cc',
625         'test/test_reg_util_win_unittest.cc',
626         'test/trace_event_analyzer_unittest.cc',
627         'threading/non_thread_safe_unittest.cc',
628         'threading/platform_thread_unittest.cc',
629         'threading/sequenced_worker_pool_unittest.cc',
630         'threading/simple_thread_unittest.cc',
631         'threading/thread_checker_unittest.cc',
632         'threading/thread_collision_warner_unittest.cc',
633         'threading/thread_id_name_manager_unittest.cc',
634         'threading/thread_local_storage_unittest.cc',
635         'threading/thread_local_unittest.cc',
636         'threading/thread_unittest.cc',
637         'threading/watchdog_unittest.cc',
638         'threading/worker_pool_posix_unittest.cc',
639         'threading/worker_pool_unittest.cc',
640         'time/pr_time_unittest.cc',
641         'time/time_unittest.cc',
642         'time/time_win_unittest.cc',
643         'timer/hi_res_timer_manager_unittest.cc',
644         'timer/mock_timer_unittest.cc',
645         'timer/timer_unittest.cc',
646         'tools_sanity_unittest.cc',
647         'trace_event/trace_event_argument_unittest.cc',
648         'trace_event/trace_event_memory_unittest.cc',
649         'trace_event/trace_event_synthetic_delay_unittest.cc',
650         'trace_event/trace_event_system_stats_monitor_unittest.cc',
651         'trace_event/trace_event_unittest.cc',
652         'trace_event/trace_event_win_unittest.cc',
653         'tracked_objects_unittest.cc',
654         'tuple_unittest.cc',
655         'values_unittest.cc',
656         'version_unittest.cc',
657         'vlog_unittest.cc',
658         'win/dllmain.cc',
659         'win/enum_variant_unittest.cc',
660         'win/event_trace_consumer_unittest.cc',
661         'win/event_trace_controller_unittest.cc',
662         'win/event_trace_provider_unittest.cc',
663         'win/i18n_unittest.cc',
664         'win/iunknown_impl_unittest.cc',
665         'win/message_window_unittest.cc',
666         'win/object_watcher_unittest.cc',
667         'win/pe_image_unittest.cc',
668         'win/registry_unittest.cc',
669         'win/scoped_bstr_unittest.cc',
670         'win/scoped_comptr_unittest.cc',
671         'win/scoped_process_information_unittest.cc',
672         'win/scoped_variant_unittest.cc',
673         'win/shortcut_unittest.cc',
674         'win/startup_information_unittest.cc',
675         'win/win_util_unittest.cc',
676         'win/wrapped_window_proc_unittest.cc',
677       ],
678       'dependencies': [
679         'base',
680         'base_i18n',
681         'base_message_loop_tests',
682         'base_prefs',
683         'base_prefs_test_support',
684         'base_static',
685         'run_all_unittests',
686         'test_support_base',
687         'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
688         '../testing/gmock.gyp:gmock',
689         '../testing/gtest.gyp:gtest',
690         '../third_party/icu/icu.gyp:icui18n',
691         '../third_party/icu/icu.gyp:icuuc',
692       ],
693       'includes': ['../build/nocompile.gypi'],
694       'variables': {
695          # TODO(ajwong): Is there a way to autodetect this?
696         'module_dir': 'base'
697       },
698       'conditions': [
699         ['OS == "android"', {
700           'dependencies': [
701             'android/jni_generator/jni_generator.gyp:jni_generator_tests',
702             '../testing/android/native_test.gyp:native_test_native_code',
703           ],
704         }],
705         ['OS == "ios" and _toolset != "host"', {
706           'sources/': [
707             # Only test the iOS-meaningful portion of process_utils.
708             ['exclude', '^process/memory_unittest'],
709             ['exclude', '^process/process_unittest\\.cc$'],
710             ['exclude', '^process/process_util_unittest\\.cc$'],
711             ['include', '^process/process_util_unittest_ios\\.cc$'],
712             # iOS does not use message_pump_libevent.
713             ['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$'],
714           ],
715           'actions': [
716             {
717               'action_name': 'copy_test_data',
718               'variables': {
719                 'test_data_files': [
720                   'test/data',
721                 ],
722                 'test_data_prefix': 'base',
723               },
724               'includes': [ '../build/copy_test_data_ios.gypi' ],
725             },
726           ],
727         }],
728         ['desktop_linux == 1 or chromeos == 1', {
729           'defines': [
730             'USE_SYMBOLIZE',
731           ],
732           'sources!': [
733             'file_version_info_unittest.cc',
734           ],
735           'conditions': [
736             [ 'desktop_linux==1', {
737               'sources': [
738                 'nix/xdg_util_unittest.cc',
739               ],
740             }],
741           ],
742         }],
743         ['use_glib == 1', {
744           'dependencies': [
745             '../build/linux/system.gyp:glib',
746           ],
747         }, {  # use_glib == 0
748           'sources!': [
749             'message_loop/message_pump_glib_unittest.cc',
750           ]
751         }],
752         ['use_ozone == 1', {
753           'sources!': [
754             'message_loop/message_pump_glib_unittest.cc',
755           ]
756         }],
757         ['OS == "linux" and use_allocator!="none"', {
758             'dependencies': [
759               'allocator/allocator.gyp:allocator',
760             ],
761           },
762         ],
763         ['OS == "win"', {
764           'sources!': [
765             'file_descriptor_shuffle_unittest.cc',
766             'files/dir_reader_posix_unittest.cc',
767             'message_loop/message_pump_libevent_unittest.cc',
768             'threading/worker_pool_posix_unittest.cc',
769           ],
770           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
771           'msvs_disabled_warnings': [
772             4267,
773           ],
774           'conditions': [
775             # This is needed so base_unittests uses the allocator shim, as
776             # SecurityTest.MemoryAllocationRestriction* tests are dependent
777             # on tcmalloc.
778             # TODO(wfh): crbug.com/246278 Move tcmalloc specific tests into
779             # their own test suite.
780             ['win_use_allocator_shim==1', {
781               'dependencies': [
782                 'allocator/allocator.gyp:allocator',
783               ],
784             }],
785             ['icu_use_data_file_flag==0', {
786               # This is needed to trigger the dll copy step on windows.
787               # TODO(mark): This should not be necessary.
788               'dependencies': [
789                 '../third_party/icu/icu.gyp:icudata',
790               ],
791             }],
792             ['incremental_chrome_dll', {
793               'defines': [
794                 # Used only to workaround a linker bug, do not use this
795                 # otherwise, and don't make it broader scope. See
796                 # http://crbug.com/251251.
797                 'INCREMENTAL_LINKING',
798               ],
799             }],
800           ],
801         }, {  # OS != "win"
802           'dependencies': [
803             '../third_party/libevent/libevent.gyp:libevent'
804           ],
805         }],
806       ],  # conditions
807       'target_conditions': [
808         ['OS == "ios" and _toolset != "host"', {
809           'sources/': [
810             # Pull in specific Mac files for iOS (which have been filtered out
811             # by file name rules).
812             ['include', '^mac/bind_objc_block_unittest\\.mm$'],
813             ['include', '^mac/foundation_util_unittest\\.mm$',],
814             ['include', '^mac/objc_property_releaser_unittest\\.mm$'],
815             ['include', '^mac/scoped_nsobject_unittest\\.mm$'],
816             ['include', '^sys_string_conversions_mac_unittest\\.mm$'],
817           ],
818         }],
819         ['OS == "android" and _toolset == "target"', {
820           'sources': [
821             'memory/discardable_memory_ashmem_allocator_unittest.cc',
822           ],
823         }],
824         ['OS == "android"', {
825           'sources/': [
826             ['include', '^debug/proc_maps_linux_unittest\\.cc$'],
827           ],
828         }],
829       ],  # target_conditions
830     },
831     {
832       'target_name': 'base_perftests',
833       'type': '<(gtest_target_type)',
834       'dependencies': [
835         'base',
836         'test_support_base',
837         '../testing/gtest.gyp:gtest',
838       ],
839       'sources': [
840         'message_loop/message_pump_perftest.cc',
841         'test/run_all_unittests.cc',
842         'threading/thread_perftest.cc',
843         '../testing/perf/perf_test.cc'
844       ],
845       'conditions': [
846         ['OS == "android"', {
847           'dependencies': [
848             '../testing/android/native_test.gyp:native_test_native_code',
849           ],
850         }],
851       ],
852     },
853     {
854       'target_name': 'base_i18n_perftests',
855       'type': '<(gtest_target_type)',
856       'dependencies': [
857         'test_support_base',
858         'test_support_perf',
859         '../testing/gtest.gyp:gtest',
860         'base_i18n',
861         'base',
862       ],
863       'sources': [
864         'i18n/streaming_utf8_validator_perftest.cc',
865       ],
866     },
867     {
868       # GN: //base/test:test_support
869       'target_name': 'test_support_base',
870       'type': 'static_library',
871       'dependencies': [
872         'base',
873         'base_static',
874         'base_i18n',
875         '../testing/gmock.gyp:gmock',
876         '../testing/gtest.gyp:gtest',
877         '../third_party/libxml/libxml.gyp:libxml',
878         'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
879       ],
880       'export_dependent_settings': [
881         'base',
882       ],
883       'conditions': [
884         ['os_posix==0', {
885           'sources!': [
886             'test/scoped_locale.cc',
887             'test/scoped_locale.h',
888           ],
889         }],
890         ['os_bsd==1', {
891           'sources!': [
892             'test/test_file_util_linux.cc',
893           ],
894         }],
895         ['OS == "android"', {
896           'dependencies': [
897             'base_unittests_jni_headers',
898             'base_java_unittest_support',
899           ],
900         }],
901         ['OS == "ios"', {
902           'toolsets': ['host', 'target'],
903         }],
904       ],
905       'sources': [
906         'test/expectations/expectation.cc',
907         'test/expectations/expectation.h',
908         'test/expectations/parser.cc',
909         'test/expectations/parser.h',
910         'test/gtest_util.cc',
911         'test/gtest_util.h',
912         'test/gtest_xml_util.cc',
913         'test/gtest_xml_util.h',
914         'test/histogram_tester.cc',
915         'test/histogram_tester.h',
916         'test/launcher/test_launcher.cc',
917         'test/launcher/test_launcher.h',
918         'test/launcher/test_result.cc',
919         'test/launcher/test_result.h',
920         'test/launcher/test_results_tracker.cc',
921         'test/launcher/test_results_tracker.h',
922         'test/launcher/unit_test_launcher.cc',
923         'test/launcher/unit_test_launcher.h',
924         'test/launcher/unit_test_launcher_ios.cc',
925         'test/mock_chrome_application_mac.h',
926         'test/mock_chrome_application_mac.mm',
927         'test/mock_devices_changed_observer.cc',
928         'test/mock_devices_changed_observer.h',
929         'test/multiprocess_test.cc',
930         'test/multiprocess_test.h',
931         'test/multiprocess_test_android.cc',
932         'test/null_task_runner.cc',
933         'test/null_task_runner.h',
934         'test/opaque_ref_counted.cc',
935         'test/opaque_ref_counted.h',
936         'test/perf_log.cc',
937         'test/perf_log.h',
938         'test/perf_test_suite.cc',
939         'test/perf_test_suite.h',
940         'test/perf_time_logger.cc',
941         'test/perf_time_logger.h',
942         'test/power_monitor_test_base.cc',
943         'test/power_monitor_test_base.h',
944         'test/scoped_locale.cc',
945         'test/scoped_locale.h',
946         'test/scoped_path_override.cc',
947         'test/scoped_path_override.h',
948         'test/sequenced_task_runner_test_template.cc',
949         'test/sequenced_task_runner_test_template.h',
950         'test/sequenced_worker_pool_owner.cc',
951         'test/sequenced_worker_pool_owner.h',
952         'test/simple_test_clock.cc',
953         'test/simple_test_clock.h',
954         'test/simple_test_tick_clock.cc',
955         'test/simple_test_tick_clock.h',
956         'test/task_runner_test_template.cc',
957         'test/task_runner_test_template.h',
958         'test/test_file_util.cc',
959         'test/test_file_util.h',
960         'test/test_file_util_android.cc',
961         'test/test_file_util_linux.cc',
962         'test/test_file_util_mac.cc',
963         'test/test_file_util_posix.cc',
964         'test/test_file_util_win.cc',
965         'test/test_io_thread.cc',
966         'test/test_io_thread.h',
967         'test/test_listener_ios.h',
968         'test/test_listener_ios.mm',
969         'test/test_mock_time_task_runner.cc',
970         'test/test_mock_time_task_runner.h',
971         'test/test_pending_task.cc',
972         'test/test_pending_task.h',
973         'test/test_reg_util_win.cc',
974         'test/test_reg_util_win.h',
975         'test/test_shortcut_win.cc',
976         'test/test_shortcut_win.h',
977         'test/test_simple_task_runner.cc',
978         'test/test_simple_task_runner.h',
979         'test/test_suite.cc',
980         'test/test_suite.h',
981         'test/test_support_android.cc',
982         'test/test_support_android.h',
983         'test/test_support_ios.h',
984         'test/test_support_ios.mm',
985         'test/test_switches.cc',
986         'test/test_switches.h',
987         'test/test_timeouts.cc',
988         'test/test_timeouts.h',
989         'test/thread_test_helper.cc',
990         'test/thread_test_helper.h',
991         'test/trace_event_analyzer.cc',
992         'test/trace_event_analyzer.h',
993         'test/trace_to_file.cc',
994         'test/trace_to_file.h',
995         'test/values_test_util.cc',
996         'test/values_test_util.h',
997       ],
998       'target_conditions': [
999         ['OS == "ios"', {
1000           'sources/': [
1001             # Pull in specific Mac files for iOS (which have been filtered out
1002             # by file name rules).
1003             ['include', '^test/test_file_util_mac\\.cc$'],
1004           ],
1005         }],
1006         ['OS == "ios" and _toolset == "target"', {
1007           'sources!': [
1008             # iOS uses its own unit test launcher.
1009             'test/launcher/unit_test_launcher.cc',
1010           ],
1011         }],
1012         ['OS == "ios" and _toolset == "host"', {
1013           'sources!': [
1014             'test/launcher/unit_test_launcher_ios.cc',
1015             'test/test_support_ios.h',
1016             'test/test_support_ios.mm',
1017           ],
1018         }],
1019       ],  # target_conditions
1020     },
1021     {
1022       'target_name': 'test_support_perf',
1023       'type': 'static_library',
1024       'dependencies': [
1025         'base',
1026         'test_support_base',
1027         '../testing/gtest.gyp:gtest',
1028       ],
1029       'sources': [
1030         'test/run_all_perftests.cc',
1031       ],
1032       'direct_dependent_settings': {
1033         'defines': [
1034           'PERF_TEST',
1035         ],
1036       },
1037     },
1038   ],
1039   'conditions': [
1040     ['OS=="ios" and "<(GENERATOR)"=="ninja"', {
1041       'targets': [
1042         {
1043           'target_name': 'test_launcher',
1044           'toolsets': ['host'],
1045           'type': 'executable',
1046           'dependencies': [
1047             'test_support_base',
1048           ],
1049           'sources': [
1050             'test/launcher/test_launcher_ios.cc',
1051           ],
1052         },
1053       ],
1054     }],
1055     ['OS!="ios"', {
1056       'targets': [
1057         {
1058           'target_name': 'check_example',
1059           'type': 'executable',
1060           'sources': [
1061             'check_example.cc',
1062           ],
1063           'dependencies': [
1064             'base',
1065           ],
1066         },
1067         {
1068           'target_name': 'build_utf8_validator_tables',
1069           'type': 'executable',
1070           'toolsets': ['host'],
1071           'dependencies': [
1072             'base',
1073             '../third_party/icu/icu.gyp:icuuc',
1074           ],
1075           'sources': [
1076             'i18n/build_utf8_validator_tables.cc'
1077           ],
1078         },
1079       ],
1080     }],
1081     ['OS == "win" and target_arch=="ia32"', {
1082       'targets': [
1083         # The base_win64 target here allows us to use base for Win64 targets
1084         # (the normal build is 32 bits).
1085         {
1086           'target_name': 'base_win64',
1087           'type': '<(component)',
1088           'variables': {
1089             'base_target': 1,
1090           },
1091           'dependencies': [
1092             'base_static_win64',
1093             'allocator/allocator.gyp:allocator_extension_thunks_win64',
1094             '../third_party/modp_b64/modp_b64.gyp:modp_b64_win64',
1095             'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations_win64',
1096           ],
1097           # TODO(gregoryd): direct_dependent_settings should be shared with the
1098           # 32-bit target, but it doesn't work due to a bug in gyp
1099           'direct_dependent_settings': {
1100             'include_dirs': [
1101               '..',
1102             ],
1103           },
1104           'defines': [
1105             'BASE_WIN64',
1106             '<@(nacl_win64_defines)',
1107           ],
1108           'configurations': {
1109             'Common_Base': {
1110               'msvs_target_platform': 'x64',
1111             },
1112           },
1113           'conditions': [
1114             ['component == "shared_library"', {
1115               'sources!': [
1116                 'debug/debug_on_start_win.cc',
1117               ],
1118             }],
1119           ],
1120           # Specify delayload for base_win64.dll.
1121           'msvs_settings': {
1122             'VCLinkerTool': {
1123               'DelayLoadDLLs': [
1124                 'cfgmgr32.dll',
1125                 'powrprof.dll',
1126                 'setupapi.dll',
1127               ],
1128               'AdditionalDependencies': [
1129                 'cfgmgr32.lib',
1130                 'powrprof.lib',
1131                 'setupapi.lib',
1132               ],
1133             },
1134           },
1135           # Specify delayload for components that link with base_win64.lib.
1136           'all_dependent_settings': {
1137             'msvs_settings': {
1138               'VCLinkerTool': {
1139                 'DelayLoadDLLs': [
1140                   'cfgmgr32.dll',
1141                   'powrprof.dll',
1142                   'setupapi.dll',
1143                 ],
1144                 'AdditionalDependencies': [
1145                   'cfgmgr32.lib',
1146                   'powrprof.lib',
1147                   'setupapi.lib',
1148                 ],
1149               },
1150             },
1151           },
1152           # TODO(rvargas): Bug 78117. Remove this.
1153           'msvs_disabled_warnings': [
1154             4244,
1155             4996,
1156             4267,
1157           ],
1158           'sources': [
1159             'async_socket_io_handler.h',
1160             'async_socket_io_handler_posix.cc',
1161             'async_socket_io_handler_win.cc',
1162             'auto_reset.h',
1163             'linux_util.cc',
1164             'linux_util.h',
1165             'md5.cc',
1166             'md5.h',
1167             'message_loop/message_pump_libevent.cc',
1168             'message_loop/message_pump_libevent.h',
1169             'metrics/field_trial.cc',
1170             'metrics/field_trial.h',
1171             'posix/file_descriptor_shuffle.cc',
1172             'posix/file_descriptor_shuffle.h',
1173             'sync_socket.h',
1174             'sync_socket_posix.cc',
1175             'sync_socket_win.cc',
1176             'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
1177             'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
1178           ],
1179         },
1180         {
1181           'target_name': 'base_i18n_nacl_win64',
1182           'type': '<(component)',
1183           # TODO(gregoryd): direct_dependent_settings should be shared with the
1184           # 32-bit target, but it doesn't work due to a bug in gyp
1185           'direct_dependent_settings': {
1186             'include_dirs': [
1187               '..',
1188             ],
1189           },
1190           'defines': [
1191             '<@(nacl_win64_defines)',
1192             'BASE_I18N_IMPLEMENTATION',
1193           ],
1194           'include_dirs': [
1195             '..',
1196           ],
1197           'sources': [
1198             'i18n/icu_util_nacl_win64.cc',
1199           ],
1200           'configurations': {
1201             'Common_Base': {
1202               'msvs_target_platform': 'x64',
1203             },
1204           },
1205         },
1206         {
1207           # TODO(rvargas): Remove this when gyp finally supports a clean model.
1208           # See bug 36232.
1209           'target_name': 'base_static_win64',
1210           'type': 'static_library',
1211           'sources': [
1212             'base_switches.cc',
1213             'base_switches.h',
1214             'win/pe_image.cc',
1215             'win/pe_image.h',
1216           ],
1217           'sources!': [
1218             # base64.cc depends on modp_b64.
1219             'base64.cc',
1220           ],
1221           'include_dirs': [
1222             '..',
1223           ],
1224           'configurations': {
1225             'Common_Base': {
1226               'msvs_target_platform': 'x64',
1227             },
1228           },
1229           'defines': [
1230             '<@(nacl_win64_defines)',
1231           ],
1232           # TODO(rvargas): Bug 78117. Remove this.
1233           'msvs_disabled_warnings': [
1234             4244,
1235           ],
1236         },
1237       ],
1238     }],
1239     ['os_posix==1 and OS!="mac" and OS!="ios"', {
1240       'targets': [
1241         {
1242           'target_name': 'symbolize',
1243           'type': 'static_library',
1244           'toolsets': ['host', 'target'],
1245           'variables': {
1246             'chromium_code': 0,
1247           },
1248           'conditions': [
1249             ['OS == "solaris"', {
1250               'include_dirs': [
1251                 '/usr/gnu/include',
1252                 '/usr/gnu/include/libelf',
1253               ],
1254             },],
1255           ],
1256           'cflags': [
1257             '-Wno-sign-compare',
1258           ],
1259           'cflags!': [
1260             '-Wextra',
1261           ],
1262           'defines': [
1263             'GLOG_BUILD_CONFIG_INCLUDE="build/build_config.h"',
1264           ],
1265           'sources': [
1266             'third_party/symbolize/config.h',
1267             'third_party/symbolize/demangle.cc',
1268             'third_party/symbolize/demangle.h',
1269             'third_party/symbolize/glog/logging.h',
1270             'third_party/symbolize/glog/raw_logging.h',
1271             'third_party/symbolize/symbolize.cc',
1272             'third_party/symbolize/symbolize.h',
1273             'third_party/symbolize/utilities.h',
1274           ],
1275           'include_dirs': [
1276             '..',
1277           ],
1278           'includes': [
1279             '../build/android/increase_size_for_speed.gypi',
1280           ],
1281         },
1282         {
1283           'target_name': 'xdg_mime',
1284           'type': 'static_library',
1285           'toolsets': ['host', 'target'],
1286           'variables': {
1287             'chromium_code': 0,
1288           },
1289           'cflags!': [
1290             '-Wextra',
1291           ],
1292           'sources': [
1293             'third_party/xdg_mime/xdgmime.c',
1294             'third_party/xdg_mime/xdgmime.h',
1295             'third_party/xdg_mime/xdgmimealias.c',
1296             'third_party/xdg_mime/xdgmimealias.h',
1297             'third_party/xdg_mime/xdgmimecache.c',
1298             'third_party/xdg_mime/xdgmimecache.h',
1299             'third_party/xdg_mime/xdgmimeglob.c',
1300             'third_party/xdg_mime/xdgmimeglob.h',
1301             'third_party/xdg_mime/xdgmimeicon.c',
1302             'third_party/xdg_mime/xdgmimeicon.h',
1303             'third_party/xdg_mime/xdgmimeint.c',
1304             'third_party/xdg_mime/xdgmimeint.h',
1305             'third_party/xdg_mime/xdgmimemagic.c',
1306             'third_party/xdg_mime/xdgmimemagic.h',
1307             'third_party/xdg_mime/xdgmimeparent.c',
1308             'third_party/xdg_mime/xdgmimeparent.h',
1309           ],
1310           'includes': [
1311             '../build/android/increase_size_for_speed.gypi',
1312           ],
1313         },
1314       ],
1315     }],
1316     ['OS == "android"', {
1317       'targets': [
1318         {
1319           # GN: //base:base_jni_headers
1320           'target_name': 'base_jni_headers',
1321           'type': 'none',
1322           'sources': [
1323             'android/java/src/org/chromium/base/ApplicationStatus.java',
1324             'android/java/src/org/chromium/base/BuildInfo.java',
1325             'android/java/src/org/chromium/base/CommandLine.java',
1326             'android/java/src/org/chromium/base/ContentUriUtils.java',
1327             'android/java/src/org/chromium/base/CpuFeatures.java',
1328             'android/java/src/org/chromium/base/EventLog.java',
1329             'android/java/src/org/chromium/base/FieldTrialList.java',
1330             'android/java/src/org/chromium/base/ImportantFileWriterAndroid.java',
1331             'android/java/src/org/chromium/base/JNIUtils.java',
1332             'android/java/src/org/chromium/base/JavaHandlerThread.java',
1333             'android/java/src/org/chromium/base/LocaleUtils.java',
1334             'android/java/src/org/chromium/base/MemoryPressureListener.java',
1335             'android/java/src/org/chromium/base/PathService.java',
1336             'android/java/src/org/chromium/base/PathUtils.java',
1337             'android/java/src/org/chromium/base/PowerMonitor.java',
1338             'android/java/src/org/chromium/base/SysUtils.java',
1339             'android/java/src/org/chromium/base/SystemMessageHandler.java',
1340             'android/java/src/org/chromium/base/ThreadUtils.java',
1341             'android/java/src/org/chromium/base/TraceEvent.java',
1342             'android/java/src/org/chromium/base/library_loader/LibraryLoader.java',
1343             'android/java/src/org/chromium/base/metrics/RecordHistogram.java',
1344           ],
1345           'variables': {
1346             'jni_gen_package': 'base',
1347           },
1348           'includes': [ '../build/jni_generator.gypi' ],
1349         },
1350         {
1351           # TODO(GN)
1352           'target_name': 'base_unittests_jni_headers',
1353           'type': 'none',
1354           'sources': [
1355             'test/android/java/src/org/chromium/base/ContentUriTestUtils.java',
1356           ],
1357           'variables': {
1358             'jni_gen_package': 'base',
1359           },
1360           'includes': [ '../build/jni_generator.gypi' ],
1361         },
1362         {
1363           # GN: //base:base_native_libraries_gen
1364           'target_name': 'base_native_libraries_gen',
1365           'type': 'none',
1366           'sources': [
1367             'android/java/templates/NativeLibraries.template',
1368           ],
1369           'variables': {
1370             'package_name': 'org/chromium/base/library_loader',
1371             'template_deps': [],
1372           },
1373           'includes': [ '../build/android/java_cpp_template.gypi' ],
1374         },
1375         {
1376           # GN: //base:base_android_java_enums_srcjar
1377           'target_name': 'base_java_library_process_type',
1378           'type': 'none',
1379           'variables': {
1380             'source_file': 'android/library_loader/library_loader_hooks.h',
1381           },
1382           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1383         },
1384         {
1385           # GN: //base:base_java
1386           'target_name': 'base_java',
1387           'type': 'none',
1388           'variables': {
1389             'java_in_dir': '../base/android/java',
1390             'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1391           },
1392           'dependencies': [
1393             'base_java_application_state',
1394             'base_java_library_load_from_apk_status_codes',
1395             'base_java_library_process_type',
1396             'base_java_memory_pressure_level',
1397             'base_native_libraries_gen',
1398           ],
1399           'includes': [ '../build/java.gypi' ],
1400           'conditions': [
1401             ['android_webview_build==0', {
1402               'dependencies': [
1403                 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1404               ],
1405             }]
1406           ],
1407         },
1408         {
1409           # GN: //base:base_java_unittest_support
1410           'target_name': 'base_java_unittest_support',
1411           'type': 'none',
1412           'dependencies': [
1413             'base_java',
1414           ],
1415           'variables': {
1416             'java_in_dir': '../base/test/android/java',
1417           },
1418           'includes': [ '../build/java.gypi' ],
1419         },
1420         {
1421           # GN: //base:base_android_java_enums_srcjar
1422           'target_name': 'base_java_application_state',
1423           'type': 'none',
1424           'variables': {
1425             'source_file': 'android/application_status_listener.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_library_load_from_apk_status_codes',
1432           'type': 'none',
1433           'variables': {
1434             'source_file': 'android/library_loader/library_load_from_apk_status_codes.h'
1435           },
1436           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1437         },
1438         {
1439           # GN: //base:base_android_java_enums_srcjar
1440           'target_name': 'base_java_memory_pressure_level',
1441           'type': 'none',
1442           'variables': {
1443             'source_file': 'memory/memory_pressure_listener.h',
1444           },
1445           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1446         },
1447         {
1448           # GN: //base:base_java_test_support
1449           'target_name': 'base_java_test_support',
1450           'type': 'none',
1451           'dependencies': [
1452             'base_java',
1453           ],
1454           'variables': {
1455             'java_in_dir': '../base/test/android/javatests',
1456           },
1457           'includes': [ '../build/java.gypi' ],
1458         },
1459         {
1460           # GN: //base:base_javatests
1461           'target_name': 'base_javatests',
1462           'type': 'none',
1463           'dependencies': [
1464             'base_java',
1465             'base_java_test_support',
1466           ],
1467           'variables': {
1468             'java_in_dir': '../base/android/javatests',
1469           },
1470           'includes': [ '../build/java.gypi' ],
1471         },
1472         {
1473           # GN: //base/android/linker:chromium_android_linker
1474           'target_name': 'chromium_android_linker',
1475           'type': 'shared_library',
1476           'conditions': [
1477             # Avoid breaking the webview build because it
1478             # does not have <(android_ndk_root)/crazy_linker.gyp.
1479             # Note that webview never uses the linker anyway.
1480             ['android_webview_build == 0', {
1481               'sources': [
1482                 'android/linker/linker_jni.cc',
1483               ],
1484               # The crazy linker is never instrumented.
1485               'cflags!': [
1486                 '-finstrument-functions',
1487               ],
1488               'dependencies': [
1489                 # The NDK contains the crazy_linker here:
1490                 #   '<(android_ndk_root)/crazy_linker.gyp:crazy_linker'
1491                 # However, we use our own fork.  See bug 384700.
1492                 '../third_party/android_crazy_linker/crazy_linker.gyp:crazy_linker',
1493               ],
1494             }],
1495           ],
1496         },
1497         {
1498           # TODO(GN)
1499           'target_name': 'base_perftests_apk',
1500           'type': 'none',
1501           'dependencies': [
1502             'base_perftests',
1503           ],
1504           'variables': {
1505             'test_suite_name': 'base_perftests',
1506           },
1507           'includes': [ '../build/apk_test.gypi' ],
1508         },
1509         {
1510           # GN: //base:base_unittests_apk
1511           'target_name': 'base_unittests_apk',
1512           'type': 'none',
1513           'dependencies': [
1514             'base_java',
1515             'base_unittests',
1516           ],
1517           'variables': {
1518             'test_suite_name': 'base_unittests',
1519           },
1520           'includes': [ '../build/apk_test.gypi' ],
1521         },
1522       ],
1523     }],
1524     ['OS == "win"', {
1525       'targets': [
1526         {
1527           'target_name': 'debug_message',
1528           'type': 'executable',
1529           'sources': [
1530             'debug_message.cc',
1531           ],
1532           'msvs_settings': {
1533             'VCLinkerTool': {
1534               'SubSystem': '2',         # Set /SUBSYSTEM:WINDOWS
1535             },
1536           },
1537         },
1538       ],
1539     }],
1540     ['test_isolation_mode != "noop"', {
1541       'targets': [
1542         {
1543           'target_name': 'base_unittests_run',
1544           'type': 'none',
1545           'dependencies': [
1546             'base_unittests',
1547           ],
1548           'includes': [
1549             '../build/isolate.gypi',
1550           ],
1551           'sources': [
1552             'base_unittests.isolate',
1553           ],
1554           'conditions': [
1555             ['use_x11 == 1', {
1556               'dependencies': [
1557                 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1558               ],
1559             }],
1560           ],
1561         },
1562       ],
1563     }],
1564   ],