Remove an old PangoFontDescription forward declaration.
[chromium-blink-merge.git] / base / base.gyp
blobd2550ecf887fa55dd209b53d877f2d31d987e483
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
6   'variables': {
7     'chromium_code': 1,
8   },
9   'includes': [
10     '../build/win_precompile.gypi',
11     'base.gypi',
12   ],
13   'targets': [
14     {
15       'target_name': 'base',
16       'type': '<(component)',
17       'toolsets': ['host', 'target'],
18       'variables': {
19         'base_target': 1,
20         'enable_wexit_time_destructors': 1,
21         'optimize': 'max',
22       },
23       'dependencies': [
24         'base_static',
25         'allocator/allocator.gyp:allocator_extension_thunks',
26         '../testing/gtest.gyp:gtest_prod',
27         '../third_party/modp_b64/modp_b64.gyp:modp_b64',
28         'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
29       ],
30       # TODO(gregoryd): direct_dependent_settings should be shared with the
31       #  64-bit target, but it doesn't work due to a bug in gyp
32       'direct_dependent_settings': {
33         'include_dirs': [
34           '..',
35         ],
36       },
37       'conditions': [
38         ['desktop_linux == 1 or chromeos == 1', {
39           'conditions': [
40             ['chromeos==1', {
41               'sources/': [ ['include', '_chromeos\\.cc$'] ]
42             }],
43           ],
44           'dependencies': [
45             'symbolize',
46             'xdg_mime',
47           ],
48           'defines': [
49             'USE_SYMBOLIZE',
50           ],
51         }, {  # desktop_linux == 0 and chromeos == 0
52             'sources/': [
53               ['exclude', '/xdg_user_dirs/'],
54               ['exclude', '_nss\\.cc$'],
55             ],
56         }],
57         ['use_glib==1', {
58           'dependencies': [
59             '../build/linux/system.gyp:glib',
60           ],
61           'export_dependent_settings': [
62             '../build/linux/system.gyp:glib',
63           ],
64         }],
65         ['OS == "android" and _toolset == "host"', {
66           # Always build base as a static_library for host toolset, even if
67           # we're doing a component build. Specifically, we only care about the
68           # target toolset using components since that's what developers are
69           # focusing on. In theory we should do this more generally for all
70           # targets when building for host, but getting the gyp magic
71           # per-toolset for the "component" variable is hard, and we really only
72           # need base on host.
73           'type': 'static_library',
74           # Base for host support is the minimum required to run the
75           # ssl false start blacklist tool. It requires further changes
76           # to generically support host builds (and tests).
77           # Note: when building for host, gyp has OS == "android",
78           # hence the *_android.cc files are included but the actual code
79           # doesn't have OS_ANDROID / ANDROID defined.
80           'conditions': [
81             ['host_os == "mac"', {
82               'sources/': [
83                 ['exclude', '^native_library_linux\\.cc$'],
84                 ['exclude', '^process_util_linux\\.cc$'],
85                 ['exclude', '^sys_info_linux\\.cc$'],
86                 ['exclude', '^sys_string_conversions_linux\\.cc$'],
87                 ['exclude', '^worker_pool_linux\\.cc$'],
88               ],
89             }],
90           ],
91         }],
92         ['OS == "android" and _toolset == "target"', {
93           'conditions': [
94             ['target_arch == "ia32" or target_arch == "x64"', {
95               'sources/': [
96                 ['include', '^atomicops_internals_x86_gcc\\.cc$'],
97               ],
98             }],
99             ['target_arch == "mipsel"', {
100               'sources/': [
101                 ['include', '^atomicops_internals_mips_gcc\\.cc$'],
102               ],
103             }],
104           ],
105           'dependencies': [
106             'base_jni_headers',
107             '../third_party/ashmem/ashmem.gyp:ashmem',
108           ],
109           'link_settings': {
110             'libraries': [
111               '-llog',
112             ],
113           },
114           'sources!': [
115             'debug/stack_trace_posix.cc',
116           ],
117           'includes': [
118             '../build/android/cpufeatures.gypi',
119           ],
120         }],
121         ['OS == "android" and _toolset == "target" and android_webview_build == 0', {
122           'dependencies': [
123             'base_java',
124           ],
125         }],
126         ['os_bsd==1', {
127           'include_dirs': [
128             '/usr/local/include',
129           ],
130           'link_settings': {
131             'libraries': [
132               '-L/usr/local/lib -lexecinfo',
133             ],
134           },
135         }],
136         ['OS == "linux"', {
137           'link_settings': {
138             'libraries': [
139               # We need rt for clock_gettime().
140               '-lrt',
141               # For 'native_library_linux.cc'
142               '-ldl',
143             ],
144           },
145           'conditions': [
146             ['use_allocator!="tcmalloc"', {
147               'defines': [
148                 'NO_TCMALLOC',
149               ],
150               'direct_dependent_settings': {
151                 'defines': [
152                   'NO_TCMALLOC',
153                 ],
154               },
155             }],
156           ],
157         }],
158         ['OS == "win"', {
159           # Specify delayload for base.dll.
160           'msvs_settings': {
161             'VCLinkerTool': {
162               'DelayLoadDLLs': [
163                 'cfgmgr32.dll',
164                 'powrprof.dll',
165                 'setupapi.dll',
166               ],
167               'AdditionalDependencies': [
168                 'cfgmgr32.lib',
169                 'powrprof.lib',
170                 'setupapi.lib',
171               ],
172             },
173           },
174           # Specify delayload for components that link with base.lib.
175           'all_dependent_settings': {
176             'msvs_settings': {
177               'VCLinkerTool': {
178                 'DelayLoadDLLs': [
179                   'cfgmgr32.dll',
180                   'powrprof.dll',
181                   'setupapi.dll',
182                 ],
183                 'AdditionalDependencies': [
184                   'cfgmgr32.lib',
185                   'powrprof.lib',
186                   'setupapi.lib',
187                 ],
188               },
189             },
190           },
191         }],
192         ['OS == "mac" or (OS == "ios" and _toolset == "host")', {
193           'link_settings': {
194             'libraries': [
195               '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
196               '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework',
197               '$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
198               '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
199               '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
200               '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
201               '$(SDKROOT)/System/Library/Frameworks/Security.framework',
202             ],
203           },
204         }],
205         ['OS == "ios" and _toolset != "host"', {
206           'link_settings': {
207             'libraries': [
208               '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
209               '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
210               '$(SDKROOT)/System/Library/Frameworks/CoreText.framework',
211               '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
212               '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
213             ],
214           },
215         }],
216         ['OS != "win" and (OS != "ios" or _toolset == "host")', {
217             'dependencies': ['../third_party/libevent/libevent.gyp:libevent'],
218         },],
219         ['component=="shared_library"', {
220           'conditions': [
221             ['OS=="win"', {
222               'sources!': [
223                 'debug/debug_on_start_win.cc',
224               ],
225             }],
226           ],
227         }],
228       ],
229       'sources': [
230         'async_socket_io_handler.h',
231         'async_socket_io_handler_posix.cc',
232         'async_socket_io_handler_win.cc',
233         'auto_reset.h',
234         'linux_util.cc',
235         'linux_util.h',
236         'message_loop/message_pump_android.cc',
237         'message_loop/message_pump_android.h',
238         'message_loop/message_pump_glib.cc',
239         'message_loop/message_pump_glib.h',
240         'message_loop/message_pump_io_ios.cc',
241         'message_loop/message_pump_io_ios.h',
242         'message_loop/message_pump_libevent.cc',
243         'message_loop/message_pump_libevent.h',
244         'message_loop/message_pump_mac.h',
245         'message_loop/message_pump_mac.mm',
246         'metrics/field_trial.cc',
247         'metrics/field_trial.h',
248         'posix/file_descriptor_shuffle.cc',
249         'posix/file_descriptor_shuffle.h',
250         'sync_socket.h',
251         'sync_socket_posix.cc',
252         'sync_socket_win.cc',
253         'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
254         'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
255       ],
256       'includes': [
257         '../build/android/increase_size_for_speed.gypi',
258       ],
259     },
260     {
261       'target_name': 'base_i18n',
262       'type': '<(component)',
263       'variables': {
264         'enable_wexit_time_destructors': 1,
265         'optimize': 'max',
266         'base_i18n_target': 1,
267       },
268       'dependencies': [
269         'base',
270         'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
271         '../third_party/icu/icu.gyp:icui18n',
272         '../third_party/icu/icu.gyp:icuuc',
273       ],
274       'conditions': [
275         ['OS == "win"', {
276           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
277           'msvs_disabled_warnings': [
278             4267,
279           ],
280         }],
281         ['icu_use_data_file_flag==1', {
282           'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'],
283         }, { # else icu_use_data_file_flag !=1
284           'conditions': [
285             ['OS=="win"', {
286               'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'],
287             }, {
288               'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'],
289             }],
290           ],
291         }],
292         ['OS == "ios"', {
293           'toolsets': ['host', 'target'],
294         }],
295       ],
296       'export_dependent_settings': [
297         'base',
298       ],
299       'includes': [
300         '../build/android/increase_size_for_speed.gypi',
301       ],
302     },
303     {
304       'target_name': 'base_message_loop_tests',
305       'type': 'static_library',
306       'dependencies': [
307         'base',
308         '../testing/gtest.gyp:gtest',
309       ],
310       'sources': [
311         'message_loop/message_loop_test.cc',
312         'message_loop/message_loop_test.h',
313       ],
314     },
315     {
316       'target_name': 'base_prefs',
317       'type': '<(component)',
318       'variables': {
319         'enable_wexit_time_destructors': 1,
320         'optimize': 'max',
321       },
322       'dependencies': [
323         'base',
324       ],
325       'export_dependent_settings': [
326         'base',
327       ],
328       'defines': [
329         'BASE_PREFS_IMPLEMENTATION',
330       ],
331       'sources': [
332         'prefs/base_prefs_export.h',
333         'prefs/default_pref_store.cc',
334         'prefs/default_pref_store.h',
335         'prefs/json_pref_store.cc',
336         'prefs/json_pref_store.h',
337         'prefs/overlay_user_pref_store.cc',
338         'prefs/overlay_user_pref_store.h',
339         'prefs/persistent_pref_store.h',
340         'prefs/pref_change_registrar.cc',
341         'prefs/pref_change_registrar.h',
342         'prefs/pref_filter.h',
343         'prefs/pref_member.cc',
344         'prefs/pref_member.h',
345         'prefs/pref_notifier.h',
346         'prefs/pref_notifier_impl.cc',
347         'prefs/pref_notifier_impl.h',
348         'prefs/pref_observer.h',
349         'prefs/pref_registry.cc',
350         'prefs/pref_registry.h',
351         'prefs/pref_registry_simple.cc',
352         'prefs/pref_registry_simple.h',
353         'prefs/pref_service.cc',
354         'prefs/pref_service.h',
355         'prefs/pref_service_factory.cc',
356         'prefs/pref_service_factory.h',
357         'prefs/pref_store.cc',
358         'prefs/pref_store.h',
359         'prefs/pref_value_map.cc',
360         'prefs/pref_value_map.h',
361         'prefs/pref_value_store.cc',
362         'prefs/pref_value_store.h',
363         'prefs/scoped_user_pref_update.cc',
364         'prefs/scoped_user_pref_update.h',
365         'prefs/value_map_pref_store.cc',
366         'prefs/value_map_pref_store.h',
367         'prefs/writeable_pref_store.h',
368       ],
369       'includes': [
370         '../build/android/increase_size_for_speed.gypi',
371       ],
372     },
373     {
374       # TODO(pasko): Remove this target when crbug.com/424562 is fixed.
375       # GN: //base:protect_file_posix
376       'target_name': 'protect_file_posix',
377       'type': 'static_library',
378       'dependencies': [
379         'base',
380       ],
381       'sources': [
382         'files/protect_file_posix.cc',
383       ],
384     },
385     {
386       'target_name': 'base_prefs_test_support',
387       'type': 'static_library',
388       'dependencies': [
389         'base',
390         'base_prefs',
391         '../testing/gmock.gyp:gmock',
392       ],
393       'sources': [
394         'prefs/mock_pref_change_callback.cc',
395         'prefs/pref_store_observer_mock.cc',
396         'prefs/pref_store_observer_mock.h',
397         'prefs/testing_pref_service.cc',
398         'prefs/testing_pref_service.h',
399         'prefs/testing_pref_store.cc',
400         'prefs/testing_pref_store.h',
401       ],
402     },
403     {
404       # This is the subset of files from base that should not be used with a
405       # dynamic library. Note that this library cannot depend on base because
406       # base depends on base_static.
407       'target_name': 'base_static',
408       'type': 'static_library',
409       'variables': {
410         'enable_wexit_time_destructors': 1,
411         'optimize': 'max',
412       },
413       'toolsets': ['host', 'target'],
414       'sources': [
415         'base_switches.cc',
416         'base_switches.h',
417         'win/pe_image.cc',
418         'win/pe_image.h',
419       ],
420       'include_dirs': [
421         '..',
422       ],
423       'includes': [
424         '../build/android/increase_size_for_speed.gypi',
425       ],
426     },
427     # Include this target for a main() function that simply instantiates
428     # and runs a base::TestSuite.
429     {
430       'target_name': 'run_all_unittests',
431       'type': 'static_library',
432       'dependencies': [
433         'test_support_base',
434       ],
435       'sources': [
436         'test/run_all_unittests.cc',
437       ],
438     },
439     {
440       'target_name': 'base_unittests',
441       'type': '<(gtest_target_type)',
442       'sources': [
443         'android/application_status_listener_unittest.cc',
444         'android/content_uri_utils_unittest.cc',
445         'android/jni_android_unittest.cc',
446         'android/jni_array_unittest.cc',
447         'android/jni_string_unittest.cc',
448         'android/path_utils_unittest.cc',
449         'android/scoped_java_ref_unittest.cc',
450         'android/sys_utils_unittest.cc',
451         'async_socket_io_handler_unittest.cc',
452         'at_exit_unittest.cc',
453         'atomicops_unittest.cc',
454         'barrier_closure_unittest.cc',
455         'base64_unittest.cc',
456         'big_endian_unittest.cc',
457         'bind_unittest.cc',
458         'bind_unittest.nc',
459         'bits_unittest.cc',
460         'build_time_unittest.cc',
461         'callback_helpers_unittest.cc',
462         'callback_list_unittest.cc',
463         'callback_list_unittest.nc',
464         'callback_unittest.cc',
465         'callback_unittest.nc',
466         'cancelable_callback_unittest.cc',
467         'chromeos/memory_pressure_observer_chromeos_unittest.cc',
468         'command_line_unittest.cc',
469         'containers/adapters_unittest.cc',
470         'containers/hash_tables_unittest.cc',
471         'containers/linked_list_unittest.cc',
472         'containers/mru_cache_unittest.cc',
473         'containers/small_map_unittest.cc',
474         'containers/stack_container_unittest.cc',
475         'cpu_unittest.cc',
476         'debug/crash_logging_unittest.cc',
477         'debug/debugger_unittest.cc',
478         'debug/leak_tracker_unittest.cc',
479         'debug/proc_maps_linux_unittest.cc',
480         'debug/stack_trace_unittest.cc',
481         'debug/task_annotator_unittest.cc',
482         'deferred_sequenced_task_runner_unittest.cc',
483         'environment_unittest.cc',
484         'file_version_info_unittest.cc',
485         'files/dir_reader_posix_unittest.cc',
486         'files/file_path_unittest.cc',
487         'files/file_proxy_unittest.cc',
488         'files/file_unittest.cc',
489         'files/file_util_proxy_unittest.cc',
490         'files/file_util_unittest.cc',
491         'files/important_file_writer_unittest.cc',
492         'files/memory_mapped_file_unittest.cc',
493         'files/scoped_temp_dir_unittest.cc',
494         'gmock_unittest.cc',
495         'guid_unittest.cc',
496         'hash_unittest.cc',
497         'i18n/break_iterator_unittest.cc',
498         'i18n/case_conversion_unittest.cc',
499         'i18n/char_iterator_unittest.cc',
500         'i18n/file_util_icu_unittest.cc',
501         'i18n/icu_string_conversions_unittest.cc',
502         'i18n/number_formatting_unittest.cc',
503         'i18n/rtl_unittest.cc',
504         'i18n/streaming_utf8_validator_unittest.cc',
505         'i18n/string_search_unittest.cc',
506         'i18n/time_formatting_unittest.cc',
507         'i18n/timezone_unittest.cc',
508         'id_map_unittest.cc',
509         'ios/crb_protocol_observers_unittest.mm',
510         'ios/device_util_unittest.mm',
511         'ios/weak_nsobject_unittest.mm',
512         'json/json_parser_unittest.cc',
513         'json/json_reader_unittest.cc',
514         'json/json_value_converter_unittest.cc',
515         'json/json_value_serializer_unittest.cc',
516         'json/json_writer_unittest.cc',
517         'json/string_escape_unittest.cc',
518         'lazy_instance_unittest.cc',
519         'logging_unittest.cc',
520         'mac/bind_objc_block_unittest.mm',
521         'mac/foundation_util_unittest.mm',
522         'mac/libdispatch_task_runner_unittest.cc',
523         'mac/mac_util_unittest.mm',
524         'mac/objc_property_releaser_unittest.mm',
525         'mac/scoped_nsobject_unittest.mm',
526         'mac/scoped_objc_class_swizzler_unittest.mm',
527         'mac/scoped_sending_event_unittest.mm',
528         'md5_unittest.cc',
529         'memory/aligned_memory_unittest.cc',
530         'memory/discardable_memory_manager_unittest.cc',
531         'memory/discardable_memory_unittest.cc',
532         'memory/discardable_shared_memory_unittest.cc',
533         'memory/linked_ptr_unittest.cc',
534         'memory/ref_counted_memory_unittest.cc',
535         'memory/ref_counted_unittest.cc',
536         'memory/scoped_ptr_unittest.cc',
537         'memory/scoped_ptr_unittest.nc',
538         'memory/scoped_vector_unittest.cc',
539         'memory/shared_memory_unittest.cc',
540         'memory/singleton_unittest.cc',
541         'memory/weak_ptr_unittest.cc',
542         'memory/weak_ptr_unittest.nc',
543         'message_loop/message_loop_proxy_impl_unittest.cc',
544         'message_loop/message_loop_proxy_unittest.cc',
545         'message_loop/message_loop_unittest.cc',
546         'message_loop/message_pump_glib_unittest.cc',
547         'message_loop/message_pump_io_ios_unittest.cc',
548         'message_loop/message_pump_libevent_unittest.cc',
549         'metrics/bucket_ranges_unittest.cc',
550         'metrics/field_trial_unittest.cc',
551         'metrics/histogram_base_unittest.cc',
552         'metrics/histogram_delta_serialization_unittest.cc',
553         'metrics/histogram_macros_unittest.cc',
554         'metrics/histogram_snapshot_manager_unittest.cc',
555         'metrics/histogram_unittest.cc',
556         'metrics/sample_map_unittest.cc',
557         'metrics/sample_vector_unittest.cc',
558         'metrics/sparse_histogram_unittest.cc',
559         'metrics/statistics_recorder_unittest.cc',
560         'numerics/safe_numerics_unittest.cc',
561         'observer_list_unittest.cc',
562         'os_compat_android_unittest.cc',
563         'path_service_unittest.cc',
564         'pickle_unittest.cc',
565         'posix/file_descriptor_shuffle_unittest.cc',
566         'posix/unix_domain_socket_linux_unittest.cc',
567         'power_monitor/power_monitor_unittest.cc',
568         'prefs/default_pref_store_unittest.cc',
569         'prefs/json_pref_store_unittest.cc',
570         'prefs/mock_pref_change_callback.h',
571         'prefs/overlay_user_pref_store_unittest.cc',
572         'prefs/pref_change_registrar_unittest.cc',
573         'prefs/pref_member_unittest.cc',
574         'prefs/pref_notifier_impl_unittest.cc',
575         'prefs/pref_service_unittest.cc',
576         'prefs/pref_value_map_unittest.cc',
577         'prefs/pref_value_store_unittest.cc',
578         'prefs/scoped_user_pref_update_unittest.cc',
579         'process/memory_unittest.cc',
580         'process/memory_unittest_mac.h',
581         'process/memory_unittest_mac.mm',
582         'process/process_metrics_unittest.cc',
583         'process/process_metrics_unittest_ios.cc',
584         'process/process_unittest.cc',
585         'process/process_util_unittest.cc',
586         'profiler/tracked_time_unittest.cc',
587         'rand_util_unittest.cc',
588         'scoped_clear_errno_unittest.cc',
589         'scoped_generic_unittest.cc',
590         'scoped_native_library_unittest.cc',
591         'security_unittest.cc',
592         'sequence_checker_unittest.cc',
593         'sha1_unittest.cc',
594         'stl_util_unittest.cc',
595         'strings/nullable_string16_unittest.cc',
596         'strings/safe_sprintf_unittest.cc',
597         'strings/string16_unittest.cc',
598         'strings/string_number_conversions_unittest.cc',
599         'strings/string_piece_unittest.cc',
600         'strings/string_split_unittest.cc',
601         'strings/string_tokenizer_unittest.cc',
602         'strings/string_util_unittest.cc',
603         'strings/stringize_macros_unittest.cc',
604         'strings/stringprintf_unittest.cc',
605         'strings/sys_string_conversions_mac_unittest.mm',
606         'strings/sys_string_conversions_unittest.cc',
607         'strings/utf_offset_string_conversions_unittest.cc',
608         'strings/utf_string_conversions_unittest.cc',
609         'supports_user_data_unittest.cc',
610         'sync_socket_unittest.cc',
611         'synchronization/cancellation_flag_unittest.cc',
612         'synchronization/condition_variable_unittest.cc',
613         'synchronization/lock_unittest.cc',
614         'synchronization/waitable_event_unittest.cc',
615         'synchronization/waitable_event_watcher_unittest.cc',
616         'sys_info_unittest.cc',
617         'system_monitor/system_monitor_unittest.cc',
618         'task/cancelable_task_tracker_unittest.cc',
619         'task_runner_util_unittest.cc',
620         'template_util_unittest.cc',
621         'test/expectations/expectation_unittest.cc',
622         'test/expectations/parser_unittest.cc',
623         'test/histogram_tester_unittest.cc',
624         'test/test_pending_task_unittest.cc',
625         'test/test_reg_util_win_unittest.cc',
626         'test/trace_event_analyzer_unittest.cc',
627         'threading/non_thread_safe_unittest.cc',
628         'threading/platform_thread_unittest.cc',
629         'threading/sequenced_worker_pool_unittest.cc',
630         'threading/simple_thread_unittest.cc',
631         'threading/thread_checker_unittest.cc',
632         'threading/thread_collision_warner_unittest.cc',
633         'threading/thread_id_name_manager_unittest.cc',
634         'threading/thread_local_storage_unittest.cc',
635         'threading/thread_local_unittest.cc',
636         'threading/thread_unittest.cc',
637         'threading/watchdog_unittest.cc',
638         'threading/worker_pool_posix_unittest.cc',
639         'threading/worker_pool_unittest.cc',
640         'time/pr_time_unittest.cc',
641         'time/time_unittest.cc',
642         'time/time_win_unittest.cc',
643         'timer/hi_res_timer_manager_unittest.cc',
644         'timer/mock_timer_unittest.cc',
645         'timer/timer_unittest.cc',
646         'tools_sanity_unittest.cc',
647         'trace_event/memory_dump_manager_unittest.cc',
648         'trace_event/process_memory_maps_dump_provider_unittest.cc',
649         'trace_event/process_memory_totals_dump_provider_unittest.cc',
650         'trace_event/trace_event_argument_unittest.cc',
651         'trace_event/trace_event_memory_unittest.cc',
652         'trace_event/trace_event_synthetic_delay_unittest.cc',
653         'trace_event/trace_event_system_stats_monitor_unittest.cc',
654         'trace_event/trace_event_unittest.cc',
655         'trace_event/trace_event_win_unittest.cc',
656         'tracked_objects_unittest.cc',
657         'tuple_unittest.cc',
658         'values_unittest.cc',
659         'version_unittest.cc',
660         'vlog_unittest.cc',
661         'win/dllmain.cc',
662         'win/enum_variant_unittest.cc',
663         'win/event_trace_consumer_unittest.cc',
664         'win/event_trace_controller_unittest.cc',
665         'win/event_trace_provider_unittest.cc',
666         'win/i18n_unittest.cc',
667         'win/iunknown_impl_unittest.cc',
668         'win/message_window_unittest.cc',
669         'win/object_watcher_unittest.cc',
670         'win/pe_image_unittest.cc',
671         'win/registry_unittest.cc',
672         'win/scoped_bstr_unittest.cc',
673         'win/scoped_comptr_unittest.cc',
674         'win/scoped_process_information_unittest.cc',
675         'win/scoped_variant_unittest.cc',
676         'win/shortcut_unittest.cc',
677         'win/startup_information_unittest.cc',
678         'win/win_util_unittest.cc',
679         'win/wrapped_window_proc_unittest.cc',
680       ],
681       'dependencies': [
682         'base',
683         'base_i18n',
684         'base_message_loop_tests',
685         'base_prefs',
686         'base_prefs_test_support',
687         'base_static',
688         'run_all_unittests',
689         'test_support_base',
690         'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
691         '../testing/gmock.gyp:gmock',
692         '../testing/gtest.gyp:gtest',
693         '../third_party/icu/icu.gyp:icui18n',
694         '../third_party/icu/icu.gyp:icuuc',
695       ],
696       'includes': ['../build/nocompile.gypi'],
697       'variables': {
698          # TODO(ajwong): Is there a way to autodetect this?
699         'module_dir': 'base'
700       },
701       'conditions': [
702         ['OS == "android"', {
703           'dependencies': [
704             'android/jni_generator/jni_generator.gyp:jni_generator_tests',
705             '../testing/android/native_test.gyp:native_test_native_code',
706           ],
707         }],
708         ['OS == "ios" and _toolset != "host"', {
709           'sources/': [
710             # Only test the iOS-meaningful portion of process_utils.
711             ['exclude', '^process/memory_unittest'],
712             ['exclude', '^process/process_unittest\\.cc$'],
713             ['exclude', '^process/process_util_unittest\\.cc$'],
714             ['include', '^process/process_util_unittest_ios\\.cc$'],
715             # iOS does not use message_pump_libevent.
716             ['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$'],
717           ],
718           'actions': [
719             {
720               'action_name': 'copy_test_data',
721               'variables': {
722                 'test_data_files': [
723                   'test/data',
724                 ],
725                 'test_data_prefix': 'base',
726               },
727               'includes': [ '../build/copy_test_data_ios.gypi' ],
728             },
729           ],
730         }],
731         ['desktop_linux == 1 or chromeos == 1', {
732           'defines': [
733             'USE_SYMBOLIZE',
734           ],
735           'sources!': [
736             'file_version_info_unittest.cc',
737           ],
738           'conditions': [
739             [ 'desktop_linux==1', {
740               'sources': [
741                 'nix/xdg_util_unittest.cc',
742               ],
743             }],
744           ],
745         }],
746         ['use_glib == 1', {
747           'dependencies': [
748             '../build/linux/system.gyp:glib',
749           ],
750         }, {  # use_glib == 0
751           'sources!': [
752             'message_loop/message_pump_glib_unittest.cc',
753           ]
754         }],
755         ['use_ozone == 1', {
756           'sources!': [
757             'message_loop/message_pump_glib_unittest.cc',
758           ]
759         }],
760         ['OS == "linux" and use_allocator!="none"', {
761             'dependencies': [
762               'allocator/allocator.gyp:allocator',
763             ],
764           },
765         ],
766         ['OS == "win"', {
767           'sources!': [
768             'file_descriptor_shuffle_unittest.cc',
769             'files/dir_reader_posix_unittest.cc',
770             'message_loop/message_pump_libevent_unittest.cc',
771             'threading/worker_pool_posix_unittest.cc',
772           ],
773           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
774           'msvs_disabled_warnings': [
775             4267,
776           ],
777           'conditions': [
778             # This is needed so base_unittests uses the allocator shim, as
779             # SecurityTest.MemoryAllocationRestriction* tests are dependent
780             # on tcmalloc.
781             # TODO(wfh): crbug.com/246278 Move tcmalloc specific tests into
782             # their own test suite.
783             ['win_use_allocator_shim==1', {
784               'dependencies': [
785                 'allocator/allocator.gyp:allocator',
786               ],
787             }],
788             ['icu_use_data_file_flag==0', {
789               # This is needed to trigger the dll copy step on windows.
790               # TODO(mark): This should not be necessary.
791               'dependencies': [
792                 '../third_party/icu/icu.gyp:icudata',
793               ],
794             }],
795             ['incremental_chrome_dll', {
796               'defines': [
797                 # Used only to workaround a linker bug, do not use this
798                 # otherwise, and don't make it broader scope. See
799                 # http://crbug.com/251251.
800                 'INCREMENTAL_LINKING',
801               ],
802             }],
803           ],
804         }, {  # OS != "win"
805           'dependencies': [
806             '../third_party/libevent/libevent.gyp:libevent'
807           ],
808         }],
809       ],  # conditions
810       'target_conditions': [
811         ['OS == "ios" and _toolset != "host"', {
812           'sources/': [
813             # Pull in specific Mac files for iOS (which have been filtered out
814             # by file name rules).
815             ['include', '^mac/bind_objc_block_unittest\\.mm$'],
816             ['include', '^mac/foundation_util_unittest\\.mm$',],
817             ['include', '^mac/objc_property_releaser_unittest\\.mm$'],
818             ['include', '^mac/scoped_nsobject_unittest\\.mm$'],
819             ['include', '^sys_string_conversions_mac_unittest\\.mm$'],
820           ],
821         }],
822         ['OS == "android" and _toolset == "target"', {
823           'sources': [
824             'memory/discardable_memory_ashmem_allocator_unittest.cc',
825           ],
826         }],
827         ['OS == "android"', {
828           'sources/': [
829             ['include', '^debug/proc_maps_linux_unittest\\.cc$'],
830           ],
831         }],
832       ],  # target_conditions
833     },
834     {
835       'target_name': 'base_perftests',
836       'type': '<(gtest_target_type)',
837       'dependencies': [
838         'base',
839         'test_support_base',
840         '../testing/gtest.gyp:gtest',
841       ],
842       'sources': [
843         'message_loop/message_pump_perftest.cc',
844         'test/run_all_unittests.cc',
845         'threading/thread_perftest.cc',
846         '../testing/perf/perf_test.cc'
847       ],
848       'conditions': [
849         ['OS == "android"', {
850           'dependencies': [
851             '../testing/android/native_test.gyp:native_test_native_code',
852           ],
853         }],
854       ],
855     },
856     {
857       'target_name': 'base_i18n_perftests',
858       'type': '<(gtest_target_type)',
859       'dependencies': [
860         'test_support_base',
861         'test_support_perf',
862         '../testing/gtest.gyp:gtest',
863         'base_i18n',
864         'base',
865       ],
866       'sources': [
867         'i18n/streaming_utf8_validator_perftest.cc',
868       ],
869     },
870     {
871       # GN: //base/test:test_support
872       'target_name': 'test_support_base',
873       'type': 'static_library',
874       'dependencies': [
875         'base',
876         'base_static',
877         'base_i18n',
878         '../testing/gmock.gyp:gmock',
879         '../testing/gtest.gyp:gtest',
880         '../third_party/icu/icu.gyp:icuuc',
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/histogram_tester.cc',
919         'test/histogram_tester.h',
920         'test/launcher/test_launcher.cc',
921         'test/launcher/test_launcher.h',
922         'test/launcher/test_result.cc',
923         'test/launcher/test_result.h',
924         'test/launcher/test_results_tracker.cc',
925         'test/launcher/test_results_tracker.h',
926         'test/launcher/unit_test_launcher.cc',
927         'test/launcher/unit_test_launcher.h',
928         'test/launcher/unit_test_launcher_ios.cc',
929         'test/mock_chrome_application_mac.h',
930         'test/mock_chrome_application_mac.mm',
931         'test/mock_devices_changed_observer.cc',
932         'test/mock_devices_changed_observer.h',
933         'test/multiprocess_test.cc',
934         'test/multiprocess_test.h',
935         'test/multiprocess_test_android.cc',
936         'test/null_task_runner.cc',
937         'test/null_task_runner.h',
938         'test/opaque_ref_counted.cc',
939         'test/opaque_ref_counted.h',
940         'test/perf_log.cc',
941         'test/perf_log.h',
942         'test/perf_test_suite.cc',
943         'test/perf_test_suite.h',
944         'test/perf_time_logger.cc',
945         'test/perf_time_logger.h',
946         'test/power_monitor_test_base.cc',
947         'test/power_monitor_test_base.h',
948         'test/scoped_locale.cc',
949         'test/scoped_locale.h',
950         'test/scoped_path_override.cc',
951         'test/scoped_path_override.h',
952         'test/sequenced_task_runner_test_template.cc',
953         'test/sequenced_task_runner_test_template.h',
954         'test/sequenced_worker_pool_owner.cc',
955         'test/sequenced_worker_pool_owner.h',
956         'test/simple_test_clock.cc',
957         'test/simple_test_clock.h',
958         'test/simple_test_tick_clock.cc',
959         'test/simple_test_tick_clock.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_android_java_enums_srcjar
1381           'target_name': 'base_java_library_process_type',
1382           'type': 'none',
1383           'variables': {
1384             'source_file': 'android/library_loader/library_loader_hooks.h',
1385           },
1386           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1387         },
1388         {
1389           # GN: //base:base_java
1390           'target_name': 'base_java',
1391           'type': 'none',
1392           'variables': {
1393             'java_in_dir': '../base/android/java',
1394             'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1395           },
1396           'dependencies': [
1397             'base_java_application_state',
1398             'base_java_library_load_from_apk_status_codes',
1399             'base_java_library_process_type',
1400             'base_java_memory_pressure_level',
1401             'base_native_libraries_gen',
1402           ],
1403           'includes': [ '../build/java.gypi' ],
1404           'conditions': [
1405             ['android_webview_build==0', {
1406               'dependencies': [
1407                 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1408               ],
1409             }]
1410           ],
1411         },
1412         {
1413           # GN: //base:base_java_unittest_support
1414           'target_name': 'base_java_unittest_support',
1415           'type': 'none',
1416           'dependencies': [
1417             'base_java',
1418           ],
1419           'variables': {
1420             'java_in_dir': '../base/test/android/java',
1421           },
1422           'includes': [ '../build/java.gypi' ],
1423         },
1424         {
1425           # GN: //base:base_android_java_enums_srcjar
1426           'target_name': 'base_java_application_state',
1427           'type': 'none',
1428           'variables': {
1429             'source_file': 'android/application_status_listener.h',
1430           },
1431           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1432         },
1433         {
1434           # GN: //base:base_android_java_enums_srcjar
1435           'target_name': 'base_java_library_load_from_apk_status_codes',
1436           'type': 'none',
1437           'variables': {
1438             'source_file': 'android/library_loader/library_load_from_apk_status_codes.h'
1439           },
1440           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1441         },
1442         {
1443           # GN: //base:base_android_java_enums_srcjar
1444           'target_name': 'base_java_memory_pressure_level',
1445           'type': 'none',
1446           'variables': {
1447             'source_file': 'memory/memory_pressure_listener.h',
1448           },
1449           'includes': [ '../build/android/java_cpp_enum.gypi' ],
1450         },
1451         {
1452           # GN: //base:base_java_test_support
1453           'target_name': 'base_java_test_support',
1454           'type': 'none',
1455           'dependencies': [
1456             'base_java',
1457           ],
1458           'variables': {
1459             'java_in_dir': '../base/test/android/javatests',
1460           },
1461           'includes': [ '../build/java.gypi' ],
1462         },
1463         {
1464           # GN: //base:base_javatests
1465           'target_name': 'base_javatests',
1466           'type': 'none',
1467           'dependencies': [
1468             'base_java',
1469             'base_java_test_support',
1470           ],
1471           'variables': {
1472             'java_in_dir': '../base/android/javatests',
1473           },
1474           'includes': [ '../build/java.gypi' ],
1475         },
1476         {
1477           # GN: //base/android/linker:chromium_android_linker
1478           'target_name': 'chromium_android_linker',
1479           'type': 'shared_library',
1480           'conditions': [
1481             # Avoid breaking the webview build because it
1482             # does not have <(android_ndk_root)/crazy_linker.gyp.
1483             # Note that webview never uses the linker anyway.
1484             ['android_webview_build == 0', {
1485               'sources': [
1486                 'android/linker/linker_jni.cc',
1487               ],
1488               # The crazy linker is never instrumented.
1489               'cflags!': [
1490                 '-finstrument-functions',
1491               ],
1492               'dependencies': [
1493                 # The NDK contains the crazy_linker here:
1494                 #   '<(android_ndk_root)/crazy_linker.gyp:crazy_linker'
1495                 # However, we use our own fork.  See bug 384700.
1496                 '../third_party/android_crazy_linker/crazy_linker.gyp:crazy_linker',
1497               ],
1498             }],
1499           ],
1500         },
1501         {
1502           # TODO(GN)
1503           'target_name': 'base_perftests_apk',
1504           'type': 'none',
1505           'dependencies': [
1506             'base_perftests',
1507           ],
1508           'variables': {
1509             'test_suite_name': 'base_perftests',
1510           },
1511           'includes': [ '../build/apk_test.gypi' ],
1512         },
1513         {
1514           # GN: //base:base_unittests_apk
1515           'target_name': 'base_unittests_apk',
1516           'type': 'none',
1517           'dependencies': [
1518             'base_java',
1519             'base_unittests',
1520           ],
1521           'variables': {
1522             'test_suite_name': 'base_unittests',
1523           },
1524           'includes': [ '../build/apk_test.gypi' ],
1525         },
1526       ],
1527     }],
1528     ['OS == "win"', {
1529       'targets': [
1530         {
1531           'target_name': 'debug_message',
1532           'type': 'executable',
1533           'sources': [
1534             'debug_message.cc',
1535           ],
1536           'msvs_settings': {
1537             'VCLinkerTool': {
1538               'SubSystem': '2',         # Set /SUBSYSTEM:WINDOWS
1539             },
1540           },
1541         },
1542       ],
1543     }],
1544     ['test_isolation_mode != "noop"', {
1545       'targets': [
1546         {
1547           'target_name': 'base_unittests_run',
1548           'type': 'none',
1549           'dependencies': [
1550             'base_unittests',
1551           ],
1552           'includes': [
1553             '../build/isolate.gypi',
1554           ],
1555           'sources': [
1556             'base_unittests.isolate',
1557           ],
1558           'conditions': [
1559             ['use_x11 == 1', {
1560               'dependencies': [
1561                 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1562               ],
1563             }],
1564           ],
1565         },
1566       ],
1567     }],
1568   ],