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