0b8f08efa369cb760e777f7315607f57c86bcb64
[platform/framework/web/crosswalk.git] / src / base / base.gyp
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.
4
5 {
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 or <(use_ozone)==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       ],
292
293
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         'platform_file_unittest.cc',
536         'posix/file_descriptor_shuffle_unittest.cc',
537         'posix/unix_domain_socket_linux_unittest.cc',
538         'power_monitor/power_monitor_unittest.cc',
539         'prefs/default_pref_store_unittest.cc',
540         'prefs/json_pref_store_unittest.cc',
541         'prefs/mock_pref_change_callback.h',
542         'prefs/overlay_user_pref_store_unittest.cc',
543         'prefs/pref_change_registrar_unittest.cc',
544         'prefs/pref_member_unittest.cc',
545         'prefs/pref_notifier_impl_unittest.cc',
546         'prefs/pref_service_unittest.cc',
547         'prefs/pref_value_map_unittest.cc',
548         'prefs/pref_value_store_unittest.cc',
549         'prefs/scoped_user_pref_update_unittest.cc',
550         'process/memory_unittest.cc',
551         'process/memory_unittest_mac.h',
552         'process/memory_unittest_mac.mm',
553         'process/process_metrics_unittest.cc',
554         'process/process_metrics_unittest_ios.cc',
555         'process/process_util_unittest.cc',
556         'profiler/tracked_time_unittest.cc',
557         'rand_util_unittest.cc',
558         'numerics/safe_numerics_unittest.cc',
559         'scoped_clear_errno_unittest.cc',
560         'scoped_generic_unittest.cc',
561         'scoped_native_library_unittest.cc',
562         'scoped_observer.h',
563         'security_unittest.cc',
564         'sequence_checker_unittest.cc',
565         'sha1_unittest.cc',
566         'stl_util_unittest.cc',
567         'strings/nullable_string16_unittest.cc',
568         'strings/safe_sprintf_unittest.cc',
569         'strings/string16_unittest.cc',
570         'strings/stringprintf_unittest.cc',
571         'strings/string_number_conversions_unittest.cc',
572         'strings/string_piece_unittest.cc',
573         'strings/string_split_unittest.cc',
574         'strings/string_tokenizer_unittest.cc',
575         'strings/string_util_unittest.cc',
576         'strings/stringize_macros_unittest.cc',
577         'strings/sys_string_conversions_mac_unittest.mm',
578         'strings/sys_string_conversions_unittest.cc',
579         'strings/utf_offset_string_conversions_unittest.cc',
580         'strings/utf_string_conversions_unittest.cc',
581         'supports_user_data_unittest.cc',
582         'sync_socket_unittest.cc',
583         'synchronization/cancellation_flag_unittest.cc',
584         'synchronization/condition_variable_unittest.cc',
585         'synchronization/lock_unittest.cc',
586         'synchronization/waitable_event_unittest.cc',
587         'synchronization/waitable_event_watcher_unittest.cc',
588         'sys_info_unittest.cc',
589         'system_monitor/system_monitor_unittest.cc',
590         'task/cancelable_task_tracker_unittest.cc',
591         'task_runner_util_unittest.cc',
592         'template_util_unittest.cc',
593         'test/expectations/expectation_unittest.cc',
594         'test/expectations/parser_unittest.cc',
595         'test/statistics_delta_reader_unittest.cc',
596         'test/test_reg_util_win_unittest.cc',
597         'test/trace_event_analyzer_unittest.cc',
598         'threading/non_thread_safe_unittest.cc',
599         'threading/platform_thread_unittest.cc',
600         'threading/sequenced_worker_pool_unittest.cc',
601         'threading/simple_thread_unittest.cc',
602         'threading/thread_checker_unittest.cc',
603         'threading/thread_collision_warner_unittest.cc',
604         'threading/thread_id_name_manager_unittest.cc',
605         'threading/thread_local_storage_unittest.cc',
606         'threading/thread_local_unittest.cc',
607         'threading/thread_unittest.cc',
608         'threading/watchdog_unittest.cc',
609         'threading/worker_pool_posix_unittest.cc',
610         'threading/worker_pool_unittest.cc',
611         'time/pr_time_unittest.cc',
612         'time/time_unittest.cc',
613         'time/time_win_unittest.cc',
614         'timer/hi_res_timer_manager_unittest.cc',
615         'timer/mock_timer_unittest.cc',
616         'timer/timer_unittest.cc',
617         'tools_sanity_unittest.cc',
618         'tracked_objects_unittest.cc',
619         'tuple_unittest.cc',
620         'values_unittest.cc',
621         'version_unittest.cc',
622         'vlog_unittest.cc',
623         'win/dllmain.cc',
624         'win/enum_variant_unittest.cc',
625         'win/event_trace_consumer_unittest.cc',
626         'win/event_trace_controller_unittest.cc',
627         'win/event_trace_provider_unittest.cc',
628         'win/i18n_unittest.cc',
629         'win/iunknown_impl_unittest.cc',
630         'win/message_window_unittest.cc',
631         'win/object_watcher_unittest.cc',
632         'win/pe_image_unittest.cc',
633         'win/registry_unittest.cc',
634         'win/scoped_bstr_unittest.cc',
635         'win/scoped_comptr_unittest.cc',
636         'win/scoped_process_information_unittest.cc',
637         'win/scoped_variant_unittest.cc',
638         'win/shortcut_unittest.cc',
639         'win/startup_information_unittest.cc',
640         'win/win_util_unittest.cc',
641         'win/wrapped_window_proc_unittest.cc',
642       ],
643       'dependencies': [
644         'base',
645         'base_i18n',
646         'base_message_loop_tests',
647         'base_prefs',
648         'base_prefs_test_support',
649         'base_static',
650         'run_all_unittests',
651         'test_support_base',
652         'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
653         '../testing/gmock.gyp:gmock',
654         '../testing/gtest.gyp:gtest',
655         '../third_party/icu/icu.gyp:icui18n',
656         '../third_party/icu/icu.gyp:icuuc',
657       ],
658       'includes': ['../build/nocompile.gypi'],
659       'variables': {
660          # TODO(ajwong): Is there a way to autodetect this?
661         'module_dir': 'base'
662       },
663       'conditions': [
664         ['OS == "android"', {
665           'dependencies': [
666             'android/jni_generator/jni_generator.gyp:jni_generator_tests',
667             '../testing/android/native_test.gyp:native_test_native_code',
668           ],
669         }],
670         ['OS == "ios" and _toolset != "host"', {
671           'sources/': [
672             # Only test the iOS-meaningful portion of process_utils.
673             ['exclude', '^process/memory_unittest'],
674             ['exclude', '^process/process_util_unittest\\.cc$'],
675             ['include', '^process/process_util_unittest_ios\\.cc$'],
676             # Requires spawning processes.
677             ['exclude', '^metrics/stats_table_unittest\\.cc$'],
678             # iOS does not use message_pump_libevent.
679             ['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$'],
680           ],
681           'actions': [
682             {
683               'action_name': 'copy_test_data',
684               'variables': {
685                 'test_data_files': [
686                   'test/data',
687                 ],
688                 'test_data_prefix': 'base',
689               },
690               'includes': [ '../build/copy_test_data_ios.gypi' ],
691             },
692           ],
693         }],
694         ['desktop_linux == 1 or chromeos == 1', {
695           'defines': [
696             'USE_SYMBOLIZE',
697           ],
698           'sources!': [
699             'file_version_info_unittest.cc',
700           ],
701           'conditions': [
702             [ 'desktop_linux==1', {
703               'sources': [
704                 'nix/xdg_util_unittest.cc',
705               ],
706             }],
707           ],
708         }],
709         ['use_glib == 1', {
710           'dependencies': [
711             '../build/linux/system.gyp:glib',
712           ],
713         }, {  # use_glib == 0
714           'sources!': [
715             'message_loop/message_pump_glib_unittest.cc',
716           ]
717         }],
718         ['use_ozone == 1', {
719           'sources!': [
720             'message_loop/message_pump_glib_unittest.cc',
721           ]
722         }],
723         ['OS == "linux" and use_allocator!="none"', {
724             'dependencies': [
725               'allocator/allocator.gyp:allocator',
726             ],
727           },
728         ],
729         ['OS == "win"', {
730           'sources!': [
731             'file_descriptor_shuffle_unittest.cc',
732             'files/dir_reader_posix_unittest.cc',
733             'threading/worker_pool_posix_unittest.cc',
734             'message_loop/message_pump_libevent_unittest.cc',
735           ],
736           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
737           'msvs_disabled_warnings': [
738             4267,
739           ],
740           'conditions': [
741             # This is needed so base_unittests uses the allocator shim, as
742             # SecurityTest.MemoryAllocationRestriction* tests are dependent
743             # on tcmalloc.
744             # TODO(wfh): crbug.com/246278 Move tcmalloc specific tests into
745             # their own test suite.
746             ['win_use_allocator_shim==1', {
747               'dependencies': [
748                 'allocator/allocator.gyp:allocator',
749               ],
750             }],
751             ['icu_use_data_file_flag==0', {
752               # This is needed to trigger the dll copy step on windows.
753               # TODO(mark): This should not be necessary.
754               'dependencies': [
755                 '../third_party/icu/icu.gyp:icudata',
756               ],
757             }],
758           ],
759         }, {  # OS != "win"
760           'dependencies': [
761             '../third_party/libevent/libevent.gyp:libevent'
762           ],
763         }],
764       ],  # conditions
765       'target_conditions': [
766         ['OS == "ios" and _toolset != "host"', {
767           'sources/': [
768             # Pull in specific Mac files for iOS (which have been filtered out
769             # by file name rules).
770             ['include', '^mac/bind_objc_block_unittest\\.mm$'],
771             ['include', '^mac/foundation_util_unittest\\.mm$',],
772             ['include', '^mac/objc_property_releaser_unittest\\.mm$'],
773             ['include', '^mac/scoped_nsobject_unittest\\.mm$'],
774             ['include', '^sys_string_conversions_mac_unittest\\.mm$'],
775           ],
776         }],
777         ['OS == "android" and _toolset == "target"', {
778           'sources': [
779             'memory/discardable_memory_ashmem_allocator_unittest.cc',
780           ],
781         }],
782         ['OS == "android"', {
783           'sources/': [
784             ['include', '^debug/proc_maps_linux_unittest\\.cc$'],
785           ],
786         }],
787       ],  # target_conditions
788     },
789     {
790       'target_name': 'base_perftests',
791       'type': '<(gtest_target_type)',
792       'dependencies': [
793         'base',
794         'test_support_base',
795         '../testing/gtest.gyp:gtest',
796       ],
797       'sources': [
798         'threading/thread_perftest.cc',
799         'test/run_all_unittests.cc',
800         '../testing/perf/perf_test.cc'
801       ],
802       'conditions': [
803         ['OS == "android"', {
804           'dependencies': [
805             '../testing/android/native_test.gyp:native_test_native_code',
806           ],
807         }],
808       ],
809     },
810     {
811       'target_name': 'base_i18n_perftests',
812       'type': '<(gtest_target_type)',
813       'dependencies': [
814         'test_support_base',
815         'test_support_perf',
816         '../testing/gtest.gyp:gtest',
817         'base_i18n',
818         'base',
819       ],
820       'sources': [
821         'i18n/streaming_utf8_validator_perftest.cc',
822       ],
823     },
824     {
825       'target_name': 'test_support_base',
826       'type': 'static_library',
827       'dependencies': [
828         'base',
829         'base_static',
830         'base_i18n',
831         '../testing/gmock.gyp:gmock',
832         '../testing/gtest.gyp:gtest',
833         '../third_party/libxml/libxml.gyp:libxml',
834         'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
835       ],
836       'export_dependent_settings': [
837         'base',
838       ],
839       'conditions': [
840         ['os_posix==0', {
841           'sources!': [
842             'test/scoped_locale.cc',
843             'test/scoped_locale.h',
844           ],
845         }],
846         ['os_bsd==1', {
847           'sources!': [
848             'test/test_file_util_linux.cc',
849           ],
850         }],
851         ['OS == "android"', {
852           'dependencies': [
853             'base_unittests_jni_headers',
854             'base_java_unittest_support',
855           ],
856         }],
857       ],
858       'sources': [
859         'test/expectations/expectation.cc',
860         'test/expectations/expectation.h',
861         'test/expectations/parser.cc',
862         'test/expectations/parser.h',
863         'test/gtest_xml_util.cc',
864         'test/gtest_xml_util.h',
865         'test/launcher/test_launcher.cc',
866         'test/launcher/test_launcher.h',
867         'test/launcher/test_result.cc',
868         'test/launcher/test_result.h',
869         'test/launcher/test_results_tracker.cc',
870         'test/launcher/test_results_tracker.h',
871         'test/launcher/unit_test_launcher.cc',
872         'test/launcher/unit_test_launcher.h',
873         'test/launcher/unit_test_launcher_ios.cc',
874         'test/mock_chrome_application_mac.h',
875         'test/mock_chrome_application_mac.mm',
876         'test/mock_devices_changed_observer.cc',
877         'test/mock_devices_changed_observer.h',
878         'test/mock_time_provider.cc',
879         'test/mock_time_provider.h',
880         'test/multiprocess_test.cc',
881         'test/multiprocess_test.h',
882         'test/multiprocess_test_android.cc',
883         'test/null_task_runner.cc',
884         'test/null_task_runner.h',
885         'test/perf_log.cc',
886         'test/perf_log.h',
887         'test/perf_test_suite.cc',
888         'test/perf_test_suite.h',
889         'test/perf_time_logger.cc',
890         'test/perf_time_logger.h',
891         'test/power_monitor_test_base.cc',
892         'test/power_monitor_test_base.h',
893         'test/scoped_locale.cc',
894         'test/scoped_locale.h',
895         'test/scoped_path_override.cc',
896         'test/scoped_path_override.h',
897         'test/sequenced_task_runner_test_template.cc',
898         'test/sequenced_task_runner_test_template.h',
899         'test/sequenced_worker_pool_owner.cc',
900         'test/sequenced_worker_pool_owner.h',
901         'test/simple_test_clock.cc',
902         'test/simple_test_clock.h',
903         'test/simple_test_tick_clock.cc',
904         'test/simple_test_tick_clock.h',
905         'test/statistics_delta_reader.cc',
906         'test/statistics_delta_reader.h',
907         'test/task_runner_test_template.cc',
908         'test/task_runner_test_template.h',
909         'test/test_file_util.cc',
910         'test/test_file_util.h',
911         'test/test_file_util_android.cc',
912         'test/test_file_util_linux.cc',
913         'test/test_file_util_mac.cc',
914         'test/test_file_util_posix.cc',
915         'test/test_file_util_win.cc',
916         'test/test_listener_ios.h',
917         'test/test_listener_ios.mm',
918         'test/test_pending_task.cc',
919         'test/test_pending_task.h',
920         'test/test_process_killer_win.cc',
921         'test/test_process_killer_win.h',
922         'test/test_reg_util_win.cc',
923         'test/test_reg_util_win.h',
924         'test/test_shortcut_win.cc',
925         'test/test_shortcut_win.h',
926         'test/test_simple_task_runner.cc',
927         'test/test_simple_task_runner.h',
928         'test/test_suite.cc',
929         'test/test_suite.h',
930         'test/test_support_android.cc',
931         'test/test_support_android.h',
932         'test/test_support_ios.h',
933         'test/test_support_ios.mm',
934         'test/test_switches.cc',
935         'test/test_switches.h',
936         'test/test_timeouts.cc',
937         'test/test_timeouts.h',
938         'test/thread_test_helper.cc',
939         'test/thread_test_helper.h',
940         'test/trace_event_analyzer.cc',
941         'test/trace_event_analyzer.h',
942         'test/values_test_util.cc',
943         'test/values_test_util.h',
944       ],
945       'target_conditions': [
946         ['OS == "ios"', {
947           'sources/': [
948             # Pull in specific Mac files for iOS (which have been filtered out
949             # by file name rules).
950             ['include', '^test/test_file_util_mac\\.cc$'],
951           ],
952           'sources!': [
953             # iOS uses its own unit test launcher.
954             'test/launcher/unit_test_launcher.cc',
955           ],
956         }],
957       ],  # target_conditions
958     },
959     {
960       'target_name': 'test_support_perf',
961       'type': 'static_library',
962       'dependencies': [
963         'base',
964         'test_support_base',
965         '../testing/gtest.gyp:gtest',
966       ],
967       'sources': [
968         'test/run_all_perftests.cc',
969       ],
970       'direct_dependent_settings': {
971         'defines': [
972           'PERF_TEST',
973         ],
974       },
975     },
976     {
977       'target_name': 'sanitizer_options',
978       'type': 'static_library',
979       'toolsets': ['host', 'target'],
980       'variables': {
981          # Every target is going to depend on sanitizer_options, so allow
982          # this one to depend on itself.
983          'prune_self_dependency': 1,
984          # Do not let 'none' targets depend on this one, they don't need to.
985          'link_dependency': 1,
986        },
987       'sources': [
988         'debug/sanitizer_options.cc',
989       ],
990       'include_dirs': [
991         '..',
992       ],
993       # Some targets may want to opt-out from ASan, TSan and MSan and link
994       # without the corresponding runtime libraries. We drop the libc++
995       # dependency and omit the compiler flags to avoid bringing instrumented
996       # code to those targets.
997       'conditions': [
998         ['use_custom_libcxx==1', {
999           'dependencies!': [
1000             '../third_party/libc++/libc++.gyp:libcxx_proxy',
1001           ],
1002         }],
1003         ['tsan==1', {
1004           'sources': [
1005             'debug/tsan_suppressions.cc',
1006           ],
1007         }],
1008       ],
1009       'cflags!': [
1010         '-fsanitize=address',
1011         '-fsanitize=thread',
1012         '-fsanitize=memory',
1013         '-fsanitize-memory-track-origins',
1014       ],
1015       'direct_dependent_settings': {
1016         'ldflags': [
1017           '-Wl,-u_sanitizer_options_link_helper',
1018         ],
1019       },
1020     },
1021   ],
1022   'conditions': [
1023     ['OS!="ios"', {
1024       'targets': [
1025         {
1026           'target_name': 'check_example',
1027           'type': 'executable',
1028           'sources': [
1029             'check_example.cc',
1030           ],
1031           'dependencies': [
1032             'base',
1033           ],
1034         },
1035         {
1036           'target_name': 'build_utf8_validator_tables',
1037           'type': 'executable',
1038           'toolsets': ['host'],
1039           'dependencies': [
1040             'base',
1041             '../third_party/icu/icu.gyp:icuuc',
1042           ],
1043           'sources': [
1044             'i18n/build_utf8_validator_tables.cc'
1045           ],
1046         },
1047       ],
1048     }],
1049     ['OS == "win" and target_arch=="ia32"', {
1050       'targets': [
1051         # The base_win64 target here allows us to use base for Win64 targets
1052         # (the normal build is 32 bits).
1053         {
1054           'target_name': 'base_win64',
1055           'type': '<(component)',
1056           'variables': {
1057             'base_target': 1,
1058           },
1059           'dependencies': [
1060             'base_static_win64',
1061             'allocator/allocator.gyp:allocator_extension_thunks_win64',
1062             '../third_party/modp_b64/modp_b64.gyp:modp_b64_win64',
1063             'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations_win64',
1064           ],
1065           # TODO(gregoryd): direct_dependent_settings should be shared with the
1066           # 32-bit target, but it doesn't work due to a bug in gyp
1067           'direct_dependent_settings': {
1068             'include_dirs': [
1069               '..',
1070             ],
1071           },
1072           'defines': [
1073             'BASE_WIN64',
1074             '<@(nacl_win64_defines)',
1075           ],
1076           'configurations': {
1077             'Common_Base': {
1078               'msvs_target_platform': 'x64',
1079             },
1080           },
1081           'conditions': [
1082             ['component == "shared_library"', {
1083               'sources!': [
1084                 'debug/debug_on_start_win.cc',
1085               ],
1086             }],
1087           ],
1088           # Specify delayload for base_win64.dll.
1089           'msvs_settings': {
1090             'VCLinkerTool': {
1091               'DelayLoadDLLs': [
1092                 'powrprof.dll',
1093               ],
1094               'AdditionalDependencies': [
1095                 'powrprof.lib',
1096               ],
1097             },
1098           },
1099           # Specify delayload for components that link with base_win64.lib.
1100           'all_dependent_settings': {
1101             'msvs_settings': {
1102               'VCLinkerTool': {
1103                 'DelayLoadDLLs': [
1104                   'powrprof.dll',
1105                 ],
1106                 'AdditionalDependencies': [
1107                   'powrprof.lib',
1108                 ],
1109               },
1110             },
1111           },
1112           # TODO(rvargas): Bug 78117. Remove this.
1113           'msvs_disabled_warnings': [
1114             4244,
1115             4996,
1116             4267,
1117           ],
1118           'sources': [
1119             'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
1120             'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
1121             'async_socket_io_handler.h',
1122             'async_socket_io_handler_posix.cc',
1123             'async_socket_io_handler_win.cc',
1124             'auto_reset.h',
1125             'event_recorder.h',
1126             'event_recorder_stubs.cc',
1127             'event_recorder_win.cc',
1128             'linux_util.cc',
1129             'linux_util.h',
1130             'md5.cc',
1131             'md5.h',
1132             'message_loop/message_pump_observer.h',
1133             'message_loop/message_pump_libevent.cc',
1134             'message_loop/message_pump_libevent.h',
1135             'metrics/field_trial.cc',
1136             'metrics/field_trial.h',
1137             'posix/file_descriptor_shuffle.cc',
1138             'posix/file_descriptor_shuffle.h',
1139             'sync_socket.h',
1140             'sync_socket_win.cc',
1141             'sync_socket_posix.cc',
1142           ],
1143         },
1144         {
1145           'target_name': 'base_i18n_nacl_win64',
1146           'type': '<(component)',
1147           # TODO(gregoryd): direct_dependent_settings should be shared with the
1148           # 32-bit target, but it doesn't work due to a bug in gyp
1149           'direct_dependent_settings': {
1150             'include_dirs': [
1151               '..',
1152             ],
1153           },
1154           'defines': [
1155             '<@(nacl_win64_defines)',
1156             'BASE_I18N_IMPLEMENTATION',
1157           ],
1158           'include_dirs': [
1159             '..',
1160           ],
1161           'sources': [
1162             'i18n/icu_util_nacl_win64.cc',
1163           ],
1164           'configurations': {
1165             'Common_Base': {
1166               'msvs_target_platform': 'x64',
1167             },
1168           },
1169         },
1170         {
1171           # TODO(rvargas): Remove this when gyp finally supports a clean model.
1172           # See bug 36232.
1173           'target_name': 'base_static_win64',
1174           'type': 'static_library',
1175           'sources': [
1176             'base_switches.cc',
1177             'base_switches.h',
1178             'win/pe_image.cc',
1179             'win/pe_image.h',
1180           ],
1181           'sources!': [
1182             # base64.cc depends on modp_b64.
1183             'base64.cc',
1184           ],
1185           'include_dirs': [
1186             '..',
1187           ],
1188           'configurations': {
1189             'Common_Base': {
1190               'msvs_target_platform': 'x64',
1191             },
1192           },
1193           'defines': [
1194             '<@(nacl_win64_defines)',
1195           ],
1196           # TODO(rvargas): Bug 78117. Remove this.
1197           'msvs_disabled_warnings': [
1198             4244,
1199           ],
1200         },
1201       ],
1202     }],
1203     ['os_posix==1 and OS!="mac" and OS!="ios"', {
1204       'targets': [
1205         {
1206           'target_name': 'symbolize',
1207           'type': 'static_library',
1208           'toolsets': ['host', 'target'],
1209           'variables': {
1210             'chromium_code': 0,
1211           },
1212           'conditions': [
1213             ['OS == "solaris"', {
1214               'include_dirs': [
1215                 '/usr/gnu/include',
1216                 '/usr/gnu/include/libelf',
1217               ],
1218             },],
1219           ],
1220           'cflags': [
1221             '-Wno-sign-compare',
1222           ],
1223           'cflags!': [
1224             '-Wextra',
1225           ],
1226           'defines': [
1227             'GLOG_BUILD_CONFIG_INCLUDE="build/build_config.h"',
1228           ],
1229           'sources': [
1230             'third_party/symbolize/config.h',
1231             'third_party/symbolize/demangle.cc',
1232             'third_party/symbolize/demangle.h',
1233             'third_party/symbolize/glog/logging.h',
1234             'third_party/symbolize/glog/raw_logging.h',
1235             'third_party/symbolize/symbolize.cc',
1236             'third_party/symbolize/symbolize.h',
1237             'third_party/symbolize/utilities.h',
1238           ],
1239           'include_dirs': [
1240             '..',
1241           ],
1242         },
1243         {
1244           'target_name': 'xdg_mime',
1245           'type': 'static_library',
1246           'toolsets': ['host', 'target'],
1247           'variables': {
1248             'chromium_code': 0,
1249           },
1250           'cflags!': [
1251             '-Wextra',
1252           ],
1253           'sources': [
1254             'third_party/xdg_mime/xdgmime.c',
1255             'third_party/xdg_mime/xdgmime.h',
1256             'third_party/xdg_mime/xdgmimealias.c',
1257             'third_party/xdg_mime/xdgmimealias.h',
1258             'third_party/xdg_mime/xdgmimecache.c',
1259             'third_party/xdg_mime/xdgmimecache.h',
1260             'third_party/xdg_mime/xdgmimeglob.c',
1261             'third_party/xdg_mime/xdgmimeglob.h',
1262             'third_party/xdg_mime/xdgmimeicon.c',
1263             'third_party/xdg_mime/xdgmimeicon.h',
1264             'third_party/xdg_mime/xdgmimeint.c',
1265             'third_party/xdg_mime/xdgmimeint.h',
1266             'third_party/xdg_mime/xdgmimemagic.c',
1267             'third_party/xdg_mime/xdgmimemagic.h',
1268             'third_party/xdg_mime/xdgmimeparent.c',
1269             'third_party/xdg_mime/xdgmimeparent.h',
1270           ],
1271         },
1272       ],
1273     }],
1274     ['OS == "android"', {
1275       'targets': [
1276         {
1277           'target_name': 'base_jni_headers',
1278           'type': 'none',
1279           'sources': [
1280             'android/java/src/org/chromium/base/ApplicationStatus.java',
1281             'android/java/src/org/chromium/base/BuildInfo.java',
1282             'android/java/src/org/chromium/base/CommandLine.java',
1283             'android/java/src/org/chromium/base/ContentUriUtils.java',
1284             'android/java/src/org/chromium/base/CpuFeatures.java',
1285             'android/java/src/org/chromium/base/EventLog.java',
1286             'android/java/src/org/chromium/base/ImportantFileWriterAndroid.java',
1287             'android/java/src/org/chromium/base/library_loader/LibraryLoader.java',
1288             'android/java/src/org/chromium/base/MemoryPressureListener.java',
1289             'android/java/src/org/chromium/base/JavaHandlerThread.java',
1290             'android/java/src/org/chromium/base/PathService.java',
1291             'android/java/src/org/chromium/base/PathUtils.java',
1292             'android/java/src/org/chromium/base/PowerMonitor.java',
1293             'android/java/src/org/chromium/base/SystemMessageHandler.java',
1294             'android/java/src/org/chromium/base/SysUtils.java',
1295             'android/java/src/org/chromium/base/ThreadUtils.java',
1296             'android/java/src/org/chromium/base/TraceEvent.java',
1297           ],
1298           'variables': {
1299             'jni_gen_package': 'base',
1300           },
1301           'includes': [ '../build/jni_generator.gypi' ],
1302         },
1303         {
1304           'target_name': 'base_unittests_jni_headers',
1305           'type': 'none',
1306           'sources': [
1307             'test/android/java/src/org/chromium/base/ContentUriTestUtils.java',
1308           ],
1309           'variables': {
1310             'jni_gen_package': 'base',
1311           },
1312           'includes': [ '../build/jni_generator.gypi' ],
1313         },
1314         {
1315           'target_name': 'base_native_libraries_gen',
1316           'type': 'none',
1317           'sources': [
1318             'android/java/templates/NativeLibraries.template',
1319           ],
1320           'variables': {
1321             'package_name': 'org/chromium/base/library_loader',
1322             'include_path': 'android/java/templates',
1323             'template_deps': [
1324               'android/java/templates/native_libraries_array.h'
1325             ],
1326           },
1327           'includes': [ '../build/android/java_cpp_template.gypi' ],
1328         },
1329         {
1330           'target_name': 'base_java',
1331           'type': 'none',
1332           'variables': {
1333             'java_in_dir': '../base/android/java',
1334             'jar_excluded_classes': [ '*/NativeLibraries.class' ],
1335           },
1336           'dependencies': [
1337             'base_java_application_state',
1338             'base_java_memory_pressure_level_list',
1339             'base_native_libraries_gen',
1340           ],
1341           'includes': [ '../build/java.gypi' ],
1342           'conditions': [
1343             ['android_webview_build==0', {
1344               'dependencies': [
1345                 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1346               ],
1347             }]
1348           ],
1349         },
1350         {
1351           'target_name': 'base_java_unittest_support',
1352           'type': 'none',
1353           'dependencies': [
1354             'base_java',
1355           ],
1356           'variables': {
1357             'java_in_dir': '../base/test/android/java',
1358           },
1359           'includes': [ '../build/java.gypi' ],
1360         },
1361         {
1362           'target_name': 'base_java_application_state',
1363           'type': 'none',
1364           # This target is used to auto-generate ApplicationState.java
1365           # from a template file. The source file contains a list of
1366           # Java constant declarations matching the ones in
1367           # android/application_state_list.h.
1368           'sources': [
1369             'android/java/src/org/chromium/base/ApplicationState.template',
1370           ],
1371           'variables': {
1372             'package_name': 'org/chromium/base',
1373             'template_deps': ['android/application_state_list.h'],
1374           },
1375           'includes': [ '../build/android/java_cpp_template.gypi' ],
1376         },
1377         {
1378           'target_name': 'base_java_memory_pressure_level_list',
1379           'type': 'none',
1380           'sources': [
1381             'android/java/src/org/chromium/base/MemoryPressureLevelList.template',
1382           ],
1383           'variables': {
1384             'package_name': 'org/chromium/base',
1385             'template_deps': ['memory/memory_pressure_level_list.h'],
1386           },
1387           'includes': [ '../build/android/java_cpp_template.gypi' ],
1388         },
1389         {
1390           'target_name': 'base_java_test_support',
1391           'type': 'none',
1392           'dependencies': [
1393             'base_java',
1394           ],
1395           'variables': {
1396             'java_in_dir': '../base/test/android/javatests',
1397           },
1398           'includes': [ '../build/java.gypi' ],
1399         },
1400         {
1401           'target_name': 'base_javatests',
1402           'type': 'none',
1403           'dependencies': [
1404             'base_java',
1405             'base_java_test_support',
1406           ],
1407           'variables': {
1408             'java_in_dir': '../base/android/javatests',
1409           },
1410           'includes': [ '../build/java.gypi' ],
1411         },
1412         {
1413           'target_name': 'chromium_android_linker',
1414           'type': 'shared_library',
1415           'conditions': [
1416             ['android_webview_build == 0 and target_arch != "x64" and \
1417                target_arch != "arm64"', {
1418               # Avoid breaking the webview/64-bit build because they
1419               # don't have <(android_ndk_root)/crazy_linker.gyp.
1420               # Note that webview never uses the linker anyway.
1421               # Note there is no 64-bit support in the linker.
1422               'sources': [
1423                 'android/linker/linker_jni.cc',
1424               ],
1425               # The crazy linker is never instrumented.
1426               'cflags!': [
1427                 '-finstrument-functions',
1428               ],
1429               'dependencies': [
1430                 # The NDK contains the crazy_linker here:
1431                 #   '<(android_ndk_root)/crazy_linker.gyp:crazy_linker'
1432                 # However, we use our own fork.  See bug 384700.
1433                 '../third_party/android_crazy_linker/crazy_linker.gyp:crazy_linker',
1434               ],
1435             }],
1436           ],
1437         },
1438
1439       ],
1440     }],
1441     ['OS == "android"', {
1442       'targets': [
1443         {
1444           'target_name': 'base_perftests_apk',
1445           'type': 'none',
1446           'dependencies': [
1447             'base_perftests',
1448           ],
1449           'variables': {
1450             'test_suite_name': 'base_perftests',
1451           },
1452           'includes': [ '../build/apk_test.gypi' ],
1453         },
1454       ],
1455     }],
1456     ['OS == "win"', {
1457       'targets': [
1458         {
1459           'target_name': 'debug_message',
1460           'type': 'executable',
1461           'sources': [
1462             'debug_message.cc',
1463           ],
1464           'msvs_settings': {
1465             'VCLinkerTool': {
1466               'SubSystem': '2',         # Set /SUBSYSTEM:WINDOWS
1467             },
1468           },
1469         },
1470       ],
1471     }],
1472     ['OS == "android"', {
1473       'targets': [
1474         {
1475           'target_name': 'base_unittests_apk',
1476           'type': 'none',
1477           'dependencies': [
1478             'base_java',
1479             'base_unittests',
1480           ],
1481           'variables': {
1482             'test_suite_name': 'base_unittests',
1483           },
1484           'includes': [ '../build/apk_test.gypi' ],
1485         },
1486       ],
1487     }],
1488     ['test_isolation_mode != "noop"', {
1489       'targets': [
1490         {
1491           'target_name': 'base_unittests_run',
1492           'type': 'none',
1493           'dependencies': [
1494             'base_unittests',
1495           ],
1496           'includes': [
1497             '../build/isolate.gypi',
1498             'base_unittests.isolate',
1499           ],
1500           'sources': [
1501             'base_unittests.isolate',
1502           ],
1503         },
1504       ],
1505     }],
1506   ],
1507 }