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