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