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