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