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