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