diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bc9713a --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +.DS_Store +API_KEYS.txt +*.zip +!depot_tools.zip +*.apk +/release/ +mini_installer.exe \ No newline at end of file diff --git a/chromium.gyp_env b/chromium.gyp_env new file mode 100644 index 0000000..f5f958e --- /dev/null +++ b/chromium.gyp_env @@ -0,0 +1,4 @@ +{ + 'GYP_MSVS_VERSION': '2015', + 'GYP_DEFINES': 'buildtype=Official proprietary_codecs=1 fastbuild=2 remove_webcore_debug_symbols=1 ffmpeg_branding=Chrome enable_widevine=1 is_official_build=1 is_debug=0 dcheck_always_on=0 symbol_level=0 fieldtrial_testing_like_official_build=1 enable_hevc_demuxing=1 enable_webrtc=1 rtc_use_lto=1 use_openh264=1 enable_hangout_services_extension=1 enable_ac3_eac3_audio_demuxing=1 enable_mse_mpeg2ts_stream_parser=1 enable_iterator_debugging=0 enable_hotwording=0 enable_google_now=1 google_api_key=AIzaSyBOti4mM-6x9WDnZIjIeyEU21OpBXqWBgw google_default_client_id=77185425430.apps.googleusercontent.com google_default_client_secret=OTJgUOQcT7lO7GsGZq2G4IlT' +} diff --git a/depot_tools.zip b/depot_tools.zip new file mode 100644 index 0000000..fa16516 Binary files /dev/null and b/depot_tools.zip differ diff --git a/infra/swiftshader/3.3.0.1/libEGL.dll b/infra/swiftshader/3.3.0.1/libEGL.dll new file mode 100644 index 0000000..1a2ca61 Binary files /dev/null and b/infra/swiftshader/3.3.0.1/libEGL.dll differ diff --git a/infra/swiftshader/3.3.0.1/libGLESv2.dll b/infra/swiftshader/3.3.0.1/libGLESv2.dll new file mode 100644 index 0000000..05ca9a3 Binary files /dev/null and b/infra/swiftshader/3.3.0.1/libGLESv2.dll differ diff --git a/infra/swiftshader/3.3.0.1/manifest.fingerprint b/infra/swiftshader/3.3.0.1/manifest.fingerprint new file mode 100644 index 0000000..e69de29 diff --git a/infra/swiftshader/3.3.0.1/manifest.json b/infra/swiftshader/3.3.0.1/manifest.json new file mode 100644 index 0000000..02db39d --- /dev/null +++ b/infra/swiftshader/3.3.0.1/manifest.json @@ -0,0 +1,5 @@ +{ + "manifest_version": 2, + "name": "SwiftShader", + "version": "3.3.0.1" +} \ No newline at end of file diff --git a/src/build/common.gypi b/src/build/common.gypi new file mode 100644 index 0000000..8537ebe --- /dev/null +++ b/src/build/common.gypi @@ -0,0 +1,6390 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# IMPORTANT: +# Please don't directly include this file if you are building via gyp_chromium, +# since gyp_chromium is automatically forcing its inclusion. +{ + # Variables expected to be overriden on the GYP command line (-D) or by + # ~/.gyp/include.gypi. + 'variables': { + # Putting a variables dict inside another variables dict looks kind of + # weird. This is done so that 'host_arch', 'chromeos', etc are defined as + # variables within the outer variables dict here. This is necessary + # to get these variables defined for the conditions within this variables + # dict that operate on these variables. + 'variables': { + 'variables': { + 'variables': { + 'variables': { + # Whether we're building a ChromeOS build. + 'chromeos%': 0, + + # Whether we're building the cast (chromecast) shell + 'chromecast%': 0, + + # Whether or not we are using the Aura windowing framework. + 'use_aura%': 0, + + # Whether or not we are building the Ash shell. + 'use_ash%': 0, + + # Whether or not we are using CRAS, the ChromeOS Audio Server. + 'use_cras%': 0, + + # Use a raw surface abstraction. + 'use_ozone%': 0, + + # Configure the build for small devices. See crbug.com/318413 + 'embedded%': 0, + + 'conditions': [ + # Compute the architecture that we're building on. + ['OS=="win" or OS=="ios"', { + 'host_arch%': 'ia32', + }, { + 'host_arch%': '= 4.8 or clang. + # http://gcc.gnu.org/wiki/DebugFission + ['OS=="linux" and target_arch=="x64"', { + 'linux_use_debug_fission%': 1, + }, { + 'linux_use_debug_fission%': 0, + }], + + ['OS=="android" or OS=="ios"', { + 'enable_captive_portal_detection%': 0, + }, { + 'enable_captive_portal_detection%': 1, + }], + + # Enable Skia UI text drawing incrementally on different platforms. + # http://crbug.com/105550 + # + # On Aura, this allows per-tile painting to be used in the browser + # compositor. + ['OS!="android" and OS!="ios"', { + 'use_canvas_skia%': 1, + }], + + ['chromeos==1', { + 'enable_basic_printing%': 0, + 'enable_print_preview%': 1, + }], + + # Do not enable the Settings App on ChromeOS. + ['enable_app_list==1 and chromeos==0', { + 'enable_settings_app%': 1, + }, { + 'enable_settings_app%': 0, + }], + + # Whether tests targets should be run, archived or just have the + # dependencies verified. All the tests targets have the '_run' suffix, + # e.g. base_unittests_run runs the target base_unittests. The test + # target always calls tools/swarming_client/isolate.py. See the script's + # --help for more information. Meant to be overriden with GYP_DEFINES. + # TODO(maruel): Remove the conditions as more configurations are + # supported. + ['OS!="ios" and OS!="android" and chromeos==0', { + 'test_isolation_mode%': 'check', + }, { + 'test_isolation_mode%': 'noop', + }], + # Whether Android build uses OpenMAX DL FFT. + ['OS=="android" and ((target_arch=="arm" and arm_version >= 7) or target_arch=="ia32" or target_arch=="x64" or target_arch=="arm64" or target_arch=="mipsel")', { + # Currently only supported on Android ARMv7+, ARM64, ia32, x64 and mipsel. + # When enabled, this will also enable WebAudio support on + # Android for these architectures. Default is enabled. Whether + # WebAudio is actually available depends on runtime settings + # and flags. + 'use_openmax_dl_fft%': 1, + }, { + 'use_openmax_dl_fft%': 0, + }], + ['OS=="win" or OS=="linux"', { + 'enable_mdns%' : 1, + }], + + # Disable various features by default on embedded. + ['embedded==1', { + 'remoting%': 0, + 'enable_basic_printing%': 0, + 'enable_print_preview%': 0, + }], + + # Path to sas.dll, which provides the SendSAS function. + # http://msdn.microsoft.com/en-us/library/windows/desktop/dd979761(v=vs.85).aspx + ['target_arch=="x64"', { + 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/amd64', + }, { + 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86', + }], + + ['sysroot!=""', { + 'pkg-config': '<(chroot_cmd) <(DEPTH)/build/linux/pkg-config-wrapper "<(sysroot)" "<(target_arch)" "<(system_libdir)"', + }, { + 'pkg-config': 'pkg-config' + }], + + # Enable WebVR support by default on Android + # Still requires command line flag to access API + ['OS=="android"', { + 'enable_webvr%': 1, + }, { + 'enable_webvr%': 0, + }], + + ['order_profiling==0', { + # Set to 1 to enable fast builds. Set to 2 for even faster builds + # (it disables debug info for fastest compilation - only for use + # on compile-only bots). + 'fastbuild%': 0, + }, { + # With instrumentation enabled, debug info puts libchrome.so over 4gb, + # which causes the linker to produce an invalid ELF. + # http://crbug.com/574476 + 'fastbuild%': 2, + }], + ], + + # Setting this to '0' will cause V8's startup snapshot to be + # embedded in the binary instead of being a external files. + 'v8_use_external_startup_data%': 1, + + # Set this to 1 to enable use of concatenated impulse responses + # for the HRTF panner in WebAudio. + 'use_concatenated_impulse_responses': 1, + + # You can set the variable 'use_official_google_api_keys' to 1 + # to use the Google-internal file containing official API keys + # for Google Chrome even in a developer build. Setting this + # variable explicitly to 1 will cause your build to fail if the + # internal file is missing. + # + # The variable is documented here, but not handled in this file; + # see //google_apis/determine_use_official_keys.gypi for the + # implementation. + # + # Set the variable to 0 to not use the internal file, even when + # it exists in your checkout. + # + # Leave it unset in your include.gypi to have the variable + # implicitly set to 1 if you have + # src/google_apis/internal/google_chrome_api_keys.h in your + # checkout, and implicitly set to 0 if not. + # + # Note that official builds always behave as if the variable + # was explicitly set to 1, i.e. they always use official keys, + # and will fail to build if the internal file is missing. + # + # NOTE: You MUST NOT explicitly set the variable to 2 in your + # include.gypi or by other means. Due to subtleties of GYP, this + # is not the same as leaving the variable unset, even though its + # default value in + # //google_apis/determine_use_official_keys.gypi is 2. + + # Set these to bake the specified API keys and OAuth client + # IDs/secrets into your build. + # + # If you create a build without values baked in, you can instead + # set environment variables to provide the keys at runtime (see + # src/google_apis/google_api_keys.h for details). Features that + # require server-side APIs may fail to work if no keys are + # provided. + # + # Note that if you are building an official build or if + # use_official_google_api_keys has been set to 1 (explicitly or + # implicitly), these values will be ignored and the official + # keys will be used instead. + 'google_api_key%': '', + 'google_default_client_id%': '', + 'google_default_client_secret%': '', + # Native Client is enabled by default. + 'disable_nacl%': '0', + + # Native Client toolchains, enabled by default. + 'disable_pnacl%': 0, + 'disable_newlib%': 0, + + # Sets the default version name and code for Android app, by default we + # do a developer build. + 'android_app_version_name%': 'Developer Build', + 'android_app_version_code%': 1, + + # Use the internal version of the framework to build Android WebView. + 'use_webview_internal_framework%': 0, + }, + + # Copy conditionally-set variables out one scope. + 'branding%': '<(branding)', + 'branding_path_component%': '<(branding_path_component)', + 'buildtype%': '<(buildtype)', + 'target_arch%': '<(target_arch)', + 'target_subarch%': '<(target_subarch)', + 'mips_arch_variant%': '<(mips_arch_variant)', + 'mips_dsp_rev%': '<(mips_dsp_rev)', + 'host_arch%': '<(host_arch)', + 'toolkit_views%': '<(toolkit_views)', + 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)', + 'use_aura%': '<(use_aura)', + 'use_ash%': '<(use_ash)', + 'use_cras%': '<(use_cras)', + 'use_libpci%': '<(use_libpci)', + 'use_openssl%': '<(use_openssl)', + 'use_openssl_certs%': '<(use_openssl_certs)', + 'use_nss_certs%': '<(use_nss_certs)', + 'use_udev%': '<(use_udev)', + 'os_bsd%': '<(os_bsd)', + 'os_posix%': '<(os_posix)', + 'use_dbus%': '<(use_dbus)', + 'use_glib%': '<(use_glib)', + 'use_pango%': '<(use_pango)', + 'use_cairo%': '<(use_cairo)', + 'use_ozone%': '<(use_ozone)', + 'use_ozone_evdev%': '<(use_ozone_evdev)', + 'use_xkbcommon%': '<(use_xkbcommon)', + 'use_gtk3%': '<(use_gtk3)', + 'use_clipboard_aurax11%': '<(use_clipboard_aurax11)', + 'desktop_linux%': '<(desktop_linux)', + 'use_x11%': '<(use_x11)', + 'use_gnome_keyring%': '<(use_gnome_keyring)', + 'linux_fpic%': '<(linux_fpic)', + 'chromeos%': '<(chromeos)', + 'chromecast%': '<(chromecast)', + 'is_cast_desktop_build%': '<(is_cast_desktop_build)', + 'enable_viewport%': '<(enable_viewport)', + 'enable_hidpi%': '<(enable_hidpi)', + 'enable_topchrome_md%': '<(enable_topchrome_md)', + 'enable_wayland_server%': '<(enable_wayland_server)', + 'enable_wifi_display%': '<(enable_wifi_display)', + 'image_loader_extension%': '<(image_loader_extension)', + 'fastbuild%': '<(fastbuild)', + 'dont_embed_build_metadata%': '<(dont_embed_build_metadata)', + 'win_z7%': '<(win_z7)', + 'dcheck_always_on%': '<(dcheck_always_on)', + 'tracing_like_official_build%': '<(tracing_like_official_build)', + 'fieldtrial_testing_like_official_build%': '<(fieldtrial_testing_like_official_build)', + 'arm_version%': '<(arm_version)', + 'arm_neon%': '<(arm_neon)', + 'arm_neon_optional%': '<(arm_neon_optional)', + 'sysroot%': '<(sysroot)', + 'pkg-config%': '<(pkg-config)', + 'chroot_cmd%': '<(chroot_cmd)', + 'system_libdir%': '<(system_libdir)', + 'component%': '<(component)', + 'win_analyze%': '<(win_analyze)', + 'win_fastlink%': '<(win_fastlink)', + 'enable_resource_whitelist_generation%': '<(enable_resource_whitelist_generation)', + 'use_titlecase_in_grd%': '<(use_titlecase_in_grd)', + 'remoting%': '<(remoting)', + 'enable_one_click_signin%': '<(enable_one_click_signin)', + 'enable_media_router%': '<(enable_media_router)', + 'enable_webrtc%': '<(enable_webrtc)', + 'chromium_win_pch%': '<(chromium_win_pch)', + 'configuration_policy%': '<(configuration_policy)', + 'safe_browsing%': '<(safe_browsing)', + 'enable_web_speech%': '<(enable_web_speech)', + 'enable_hotwording%': '<(enable_hotwording)', + 'notifications%': '<(notifications)', + 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', + 'mac_want_real_dsym%': '<(mac_want_real_dsym)', + 'asan%': '<(asan)', + 'asan_blacklist%': '<(asan_blacklist)', + 'asan_coverage%': '<(asan_coverage)', + 'sanitizer_coverage%': '<(sanitizer_coverage)', + 'asan_field_padding%': '<(asan_field_padding)', + 'use_sanitizer_options%': '<(use_sanitizer_options)', + 'syzyasan%': '<(syzyasan)', + 'kasko%': '<(kasko)', + 'kasko_hang_reports%': '<(kasko_hang_reports)', + 'syzygy_optimize%': '<(syzygy_optimize)', + 'lsan%': '<(lsan)', + 'msan%': '<(msan)', + 'msan_blacklist%': '<(msan_blacklist)', + 'msan_track_origins%': '<(msan_track_origins)', + 'tsan%': '<(tsan)', + 'tsan_blacklist%': '<(tsan_blacklist)', + 'ubsan%': '<(ubsan)', + 'ubsan_blacklist%': '<(ubsan_blacklist)', + 'ubsan_vptr_blacklist%': '<(ubsan_vptr_blacklist)', + 'ubsan_vptr%': '<(ubsan_vptr)', + 'use_instrumented_libraries%': '<(use_instrumented_libraries)', + 'use_prebuilt_instrumented_libraries%': '<(use_prebuilt_instrumented_libraries)', + 'use_custom_libcxx%': '<(use_custom_libcxx)', + 'order_profiling%': '<(order_profiling)', + 'order_text_section%': '<(order_text_section)', + 'enable_extensions%': '<(enable_extensions)', + 'enable_pdf%': '<(enable_pdf)', + 'enable_plugin_installation%': '<(enable_plugin_installation)', + 'enable_plugins%': '<(enable_plugins)', + 'enable_session_service%': '<(enable_session_service)', + 'enable_themes%': '<(enable_themes)', + 'enable_autofill_dialog%': '<(enable_autofill_dialog)', + 'enable_prod_wallet_service%': '<(enable_prod_wallet_service)', + 'enable_background%': '<(enable_background)', + 'linux_use_bundled_gold%': '<(linux_use_bundled_gold)', + 'linux_use_bundled_binutils%': '<(linux_use_bundled_binutils)', + 'linux_use_gold_flags%': '<(linux_use_gold_flags)', + 'linux_use_debug_fission%': '<(linux_use_debug_fission)', + 'use_canvas_skia%': '<(use_canvas_skia)', + 'test_isolation_mode%': '<(test_isolation_mode)', + 'enable_basic_printing%': '<(enable_basic_printing)', + 'enable_print_preview%': '<(enable_print_preview)', + 'enable_spellcheck%': '<(enable_spellcheck)', + 'use_browser_spellchecker%': '<(use_browser_spellchecker)', + 'cld_version%': '<(cld_version)', + 'cld2_table_size%': '<(cld2_table_size)', + 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', + 'disable_file_support%': '<(disable_file_support)', + 'disable_ftp_support%': '<(disable_ftp_support)', + 'enable_task_manager%': '<(enable_task_manager)', + 'sas_dll_path%': '<(sas_dll_path)', + 'wix_path%': '<(wix_path)', + 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', + 'use_system_libjpeg%': '<(use_system_libjpeg)', + 'android_channel%': '<(android_channel)', + 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)', + 'gyp_managed_install%': 0, + 'create_standalone_apk%': 1, + 'enable_app_list%': '<(enable_app_list)', + 'use_default_render_theme%': '<(use_default_render_theme)', + 'enable_settings_app%': '<(enable_settings_app)', + 'google_api_key%': '<(google_api_key)', + 'google_default_client_id%': '<(google_default_client_id)', + 'google_default_client_secret%': '<(google_default_client_secret)', + 'enable_supervised_users%': '<(enable_supervised_users)', + 'enable_mdns%' : '<(enable_mdns)', + 'enable_service_discovery%' : '<(enable_service_discovery)', + 'enable_hangout_services_extension%' : '<(enable_hangout_services_extension)', + 'proprietary_codecs%': '<(proprietary_codecs)', + 'use_goma%': '<(use_goma)', + 'gomadir%': '<(gomadir)', + 'use_lto%': '<(use_lto)', + 'use_lto_o2%': '<(use_lto_o2)', + 'gold_icf_level%': '<(gold_icf_level)', + 'video_hole%': '<(video_hole)', + 'v8_use_external_startup_data%': '<(v8_use_external_startup_data)', + 'cfi_vptr%': '<(cfi_vptr)', + 'cfi_diag%': '<(cfi_diag)', + 'cfi_blacklist%': '<(cfi_blacklist)', + 'mac_views_browser%': '<(mac_views_browser)', + 'android_app_version_name%': '<(android_app_version_name)', + 'android_app_version_code%': '<(android_app_version_code)', + 'use_webview_internal_framework%': '<(use_webview_internal_framework)', + 'enable_webvr%': '<(enable_webvr)', + + # Turns on compiler optimizations in V8 in Debug build. + 'v8_optimized_debug%': 1, + + # Use system protobuf instead of bundled one. + 'use_system_protobuf%': 0, + + # Use system yasm instead of bundled one. + 'use_system_yasm%': 0, + + # Use system ICU instead of bundled one. + 'use_system_icu%' : 0, + + # Default to enabled PIE; this is important for ASLR but we may need to be + # able to turn it off for various reasons. + 'linux_disable_pie%': 0, + + # The release channel that this build targets. This is used to restrict + # channel-specific build options, like which installer packages to create. + # The default is 'all', which does no channel-specific filtering. + 'channel%': 'all', + + # Override chromium_mac_pch and set it to 0 to suppress the use of + # precompiled headers on the Mac. Prefix header injection may still be + # used, but prefix headers will not be precompiled. This is useful when + # using distcc to distribute a build to compile slaves that don't + # share the same compiler executable as the system driving the compilation, + # because precompiled headers rely on pointers into a specific compiler + # executable's image. Setting this to 0 is needed to use an experimental + # Linux-Mac cross compiler distcc farm. + 'chromium_mac_pch%': 1, + + # The default value for mac_strip in target_defaults. This cannot be + # set there, per the comment about variable% in a target_defaults. + 'mac_strip_release%': 0, + + # Set to 1 to enable java code coverage. Instruments classes during build + # to produce .ec files during runtime. + 'emma_coverage%': 0, + + # EMMA filter string consisting of a list of inclusion/exclusion patterns + # separated with whitespace and/or comma. Only has effect if + # 'emma_coverage=1'. + 'emma_filter%': '', + + # Set to 1 to enable running Android lint on java/class files. + 'android_lint%': 1, + + # Although base/allocator lets you select a heap library via an + # environment variable, the libcmt shim it uses sometimes gets in + # the way. To disable it entirely, and switch to normal msvcrt, do e.g. + # 'win_use_allocator_shim': 0, + # 'win_release_RuntimeLibrary': 2 + # to ~/.gyp/include.gypi, gclient runhooks --force, and do a release build. + 'win_use_allocator_shim%': 1, # 1 = shim allocator via libcmt; 0 = msvcrt + + # TODO(bradnelson): eliminate this when possible. + # To allow local gyp files to prevent release.vsprops from being included. + # Yes(1) means include release.vsprops. + # Once all vsprops settings are migrated into gyp, this can go away. + 'msvs_use_common_release%': 1, + + # TODO(bradnelson): eliminate this when possible. + # To allow local gyp files to override additional linker options for msvs. + # Yes(1) means set use the common linker options. + 'msvs_use_common_linker_extras%': 1, + + # TODO(sgk): eliminate this if possible. + # It would be nicer to support this via a setting in 'target_defaults' + # in chrome/app/locales/locales.gypi overriding the setting in the + # 'Debug' configuration in the 'target_defaults' dict below, + # but that doesn't work as we'd like. + 'msvs_debug_link_incremental%': '2', + + # Needed for some of the largest modules. + 'msvs_debug_link_nonincremental%': '1', + + # Turns on Use Library Dependency Inputs for linking chrome.dll on Windows + # to get incremental linking to be faster in debug builds. + 'incremental_chrome_dll%': '0', + + # Experimental setting to break chrome.dll into multiple pieces based on + # process type. + 'chrome_multiple_dll%': '0', + + # Experimental setting to optimize Chrome's DLLs with PGO. + 'chrome_pgo_phase%': '0', + + # Whether the VS xtree header has been patched to disable warning 4702. If + # it has, then we don't need to disable 4702 (unreachable code warning). + # The patch is preapplied to the internal toolchain and hence all bots. + 'msvs_xtree_patched%': '. Additional + # documentation on these macros is available at + # http://developer.apple.com/mac/library/technotes/tn2002/tn2064.html#SECTION3 + # Chrome normally builds with the Mac OS X 10.6 SDK and sets the + # deployment target to 10.6. Other projects, such as O3D, may + # override these defaults. + + # Normally, mac_sdk_min is used to find an SDK that Xcode knows + # about that is at least the specified version. In official builds, + # the SDK must match mac_sdk_min exactly. If the SDK is installed + # someplace that Xcode doesn't know about, set mac_sdk_path to the + # path to the SDK; when set to a non-empty string, SDK detection + # based on mac_sdk_min will be bypassed entirely. + 'conditions': [ + ['OS=="ios"', { + # The iOS build can use Xcode's clang, and that will complain + # about -stdlib=libc++ if the deployment target is not at least + # 10.7. + 'mac_deployment_target%': '10.7', + }, { # else OS!="ios" + 'mac_deployment_target%': '10.6', + }], + ], + 'mac_sdk_min': '10.10', + 'mac_sdk_path%': '', + }, + + 'mac_sdk_min': '<(mac_sdk_min)', + 'mac_sdk_path': '<(mac_sdk_path)', + 'mac_deployment_target': '<(mac_deployment_target)', + + # Compile in Breakpad support by default so that it can be + # tested, even if it is not enabled by default at runtime. + 'mac_breakpad_compiled_in%': 1, + 'conditions': [ + # mac_product_name is set to the name of the .app bundle as it should + # appear on disk. This duplicates data from + # chrome/app/theme/chromium/BRANDING and + # chrome/app/theme/google_chrome/BRANDING, but is necessary to get + # these names into the build system. + ['branding=="Chrome"', { + 'mac_product_name%': 'Google Chrome', + }, { # else: branding!="Chrome" + 'mac_product_name%': 'Chromium', + }], + # Official mac builds require a specific OS X SDK, but iOS and + # non-official mac builds do not. + ['branding=="Chrome" and buildtype=="Official" and OS=="mac"', { + 'mac_sdk%': '(nacl_untrusted_build)==1', { + 'defines': [ + 'USE_OPENSSL=1', + 'USE_OPENSSL_CERTS=1', + ], + }], + ['<(use_glib)==1 and >(nacl_untrusted_build)==0', { + 'defines': ['USE_GLIB=1'], + }], + ['<(use_nss_certs)==1 and >(nacl_untrusted_build)==0', { + 'defines': ['USE_NSS_CERTS=1'], + }], + ['<(chromeos)==1 and >(nacl_untrusted_build)==0', { + 'defines': ['OS_CHROMEOS=1'], + }], + ['enable_wexit_time_destructors==1 and OS!="win"', { + # TODO: Enable on Windows too, http://crbug.com/404525 + 'variables': { 'clang_warning_flags': ['-Wexit-time-destructors']}, + }], + ['chromium_code==0', { + 'variables': { + 'clang_warning_flags': [ + # Lots of third-party libraries have unused variables. Instead of + # suppressing them individually, we just blanket suppress them here. + '-Wno-unused-variable', + ], + }, + 'conditions': [ + [ 'os_posix==1 and OS!="mac" and OS!="ios"', { + # Remove -Wextra for third-party code. + 'cflags!': [ '-Wextra' ], + 'cflags_cc': [ + # Don't warn about hash_map in third-party code. + '-Wno-deprecated', + ], + }], + [ 'os_posix==1 and clang!=1 and OS!="mac" and OS!="ios"', { + # When we don't control the compiler, don't use -Wall for + # third-party code either. + 'cflags!': [ '-Wall' ], + }], + # TODO: Fix all warnings on chromeos too. + [ 'os_posix==1 and OS!="mac" and OS!="ios" and (clang!=1 or chromeos==1)', { + 'cflags!': [ + '-Werror', + ], + }], + [ 'OS=="win"', { + 'defines': [ + '_CRT_SECURE_NO_DEPRECATE', + '_CRT_NONSTDC_NO_WARNINGS', + '_CRT_NONSTDC_NO_DEPRECATE', + '_SCL_SECURE_NO_DEPRECATE', + ], + 'msvs_disabled_warnings': [ + # forcing value to bool 'true' or 'false' (performance warning) + 4800, + ], + 'msvs_settings': { + 'VCCLCompilerTool': { + 'WarningLevel': '3', + 'WarnAsError': 'true', + 'Detect64BitPortabilityProblems': 'false', + }, + }, + 'conditions': [ + ['buildtype=="Official"', { + 'msvs_settings': { + 'VCCLCompilerTool': { 'WarnAsError': 'false' }, + } + }], + [ 'component=="shared_library"', { + # TODO(darin): Unfortunately, some third_party code depends on base. + 'msvs_disabled_warnings': [ + 4251, # class 'std::xx' needs to have dll-interface. + ], + }], + ], + }], + + [ 'OS=="mac" or OS=="ios"', { + 'xcode_settings': { + 'WARNING_CFLAGS!': ['-Wextra'], + }, + 'conditions': [ + ['buildtype=="Official"', { + 'xcode_settings': { + 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Werror + }, + }], + ], + }], + [ 'OS=="ios"', { + 'xcode_settings': { + 'RUN_CLANG_STATIC_ANALYZER': 'NO', + # Several internal ios directories generate numerous warnings for + # -Wobjc-missing-property-synthesis. + 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', + }, + }], + ], + }, { + 'includes': [ + # Rules for excluding e.g. foo_win.cc from the build on non-Windows. + 'filename_rules.gypi', + ], + # In Chromium code, we define __STDC_foo_MACROS in order to get the + # C99 macros on Mac and Linux. + 'defines': [ + '__STDC_CONSTANT_MACROS', + '__STDC_FORMAT_MACROS', + ], + 'conditions': [ + ['OS=="win"', { + # turn on warnings for signed/unsigned mismatch on chromium code. + 'msvs_settings': { + 'VCCLCompilerTool': { + 'AdditionalOptions': ['/we4389'], + }, + }, + }], + ['OS=="win" and component=="shared_library"', { + 'msvs_disabled_warnings': [ + 4251, # class 'std::xx' needs to have dll-interface. + ], + }], + ], + }], + ], # target_conditions for 'target_defaults' + 'default_configuration': 'Debug', + 'configurations': { + # VCLinkerTool LinkIncremental values below: + # 0 == default + # 1 == /INCREMENTAL:NO + # 2 == /INCREMENTAL + # Debug links incremental, Release does not. + # + # Abstract base configurations to cover common attributes. + # + 'Common_Base': { + 'abstract': 1, + 'msvs_configuration_attributes': { + 'OutputDirectory': '<(DEPTH)\\build\\<(build_dir_prefix)$(ConfigurationName)', + 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', + 'CharacterSet': '1', + }, + 'msvs_settings':{ + 'VCCLCompilerTool': { + 'AdditionalOptions': [ + '/bigobj', + ], + }, + 'VCLinkerTool': { + # Add the default import libs. + 'AdditionalDependencies': [ + 'kernel32.lib', + 'gdi32.lib', + 'winspool.lib', + 'comdlg32.lib', + 'advapi32.lib', + 'shell32.lib', + 'ole32.lib', + 'oleaut32.lib', + 'user32.lib', + 'uuid.lib', + 'odbc32.lib', + 'odbccp32.lib', + 'delayimp.lib', + 'credui.lib', + 'netapi32.lib', + ], + 'AdditionalOptions': [ + # Suggested by Microsoft Devrel to avoid + # LINK : fatal error LNK1248: image size (80000000) exceeds maximum allowable size (80000000) + # which started happening more regularly after VS2013 Update 4. + # Needs to be a bit lower for VS2015, or else errors out. + '/maxilksize:0x7ff00000', + ], + }, + }, + 'conditions': [ + ['OS=="win" and win_fastlink==1', { + 'msvs_settings': { + 'VCLinkerTool': { + # /PROFILE is incompatible with /debug:fastlink + 'Profile': 'false', + 'AdditionalOptions': [ + # Tell VS 2015+ to create a PDB that references debug + # information in .obj and .lib files instead of copying + # it all. + '/DEBUG:FASTLINK', + ], + }, + }, + }], + ['OS=="win" and MSVS_VERSION == "2015"', { + 'msvs_settings': { + 'VCCLCompilerTool': { + 'AdditionalOptions': [ + # Work around crbug.com/526851, bug in VS 2015 RTM compiler. + '/Zc:sizedDealloc-', + ], + }, + }, + }], + ], + }, + 'x86_Base': { + 'abstract': 1, + 'msvs_settings': { + 'VCLinkerTool': { + 'MinimumRequiredVersion': '5.01', # XP. + 'TargetMachine': '1', + }, + 'VCLibrarianTool': { + 'TargetMachine': '1', + }, + }, + 'msvs_configuration_platform': 'Win32', + }, + 'x64_Base': { + 'abstract': 1, + 'msvs_configuration_platform': 'x64', + 'msvs_settings': { + 'VCLinkerTool': { + # Make sure to understand http://crbug.com/361720 if you want to + # increase this. + 'MinimumRequiredVersion': '5.02', # Server 2003. + 'TargetMachine': '17', # x86 - 64 + 'AdditionalLibraryDirectories!': + ['<(windows_sdk_path)/Lib/10.0.10586.0/um/x86'], + 'AdditionalLibraryDirectories': + ['<(windows_sdk_path)/Lib/10.0.10586.0/um/x64'], + # Doesn't exist x64 SDK. Should use oleaut32 in any case. + 'IgnoreDefaultLibraryNames': [ 'olepro32.lib' ], + }, + 'VCLibrarianTool': { + 'AdditionalLibraryDirectories!': + ['<(windows_sdk_path)/Lib/10.0.10586.0/um/x86'], + 'AdditionalLibraryDirectories': + ['<(windows_sdk_path)/Lib/10.0.10586.0/um/x64'], + 'TargetMachine': '17', # x64 + }, + }, + }, + 'Debug_Base': { + 'abstract': 1, + 'defines': [ + 'DYNAMIC_ANNOTATIONS_ENABLED=1', + 'WTF_USE_DYNAMIC_ANNOTATIONS=1', + ], + 'xcode_settings': { + 'GCC_OPTIMIZATION_LEVEL': '<(mac_debug_optimization)', + 'OTHER_CFLAGS': [ + '<@(debug_extra_cflags)', + ], + }, + 'msvs_settings': { + 'VCCLCompilerTool': { + 'Optimization': '<(win_debug_Optimization)', + 'PreprocessorDefinitions': ['_DEBUG'], + 'BasicRuntimeChecks': '<(win_debug_RuntimeChecks)', + 'RuntimeLibrary': '<(win_debug_RuntimeLibrary)', + 'conditions': [ + # According to MSVS, InlineFunctionExpansion=0 means + # "default inlining", not "/Ob0". + # Thus, we have to handle InlineFunctionExpansion==0 separately. + ['win_debug_InlineFunctionExpansion==0', { + 'AdditionalOptions': ['/Ob0'], + }], + ['win_debug_InlineFunctionExpansion!=""', { + 'InlineFunctionExpansion': + '<(win_debug_InlineFunctionExpansion)', + }], + ['win_debug_disable_iterator_debugging==1', { + 'PreprocessorDefinitions': ['_HAS_ITERATOR_DEBUGGING=0'], + }], + + # if win_debug_OmitFramePointers is blank, leave as default + ['win_debug_OmitFramePointers==1', { + 'OmitFramePointers': 'true', + }], + ['win_debug_OmitFramePointers==0', { + 'OmitFramePointers': 'false', + # The above is not sufficient (http://crbug.com/106711): it + # simply eliminates an explicit "/Oy", but both /O2 and /Ox + # perform FPO regardless, so we must explicitly disable. + # We still want the false setting above to avoid having + # "/Oy /Oy-" and warnings about overriding. + 'AdditionalOptions': ['/Oy-'], + }], + ], + 'AdditionalOptions': [ '<@(win_debug_extra_cflags)', ], + }, + 'VCLinkerTool': { + 'LinkIncremental': '<(msvs_debug_link_incremental)', + # ASLR makes debugging with windbg difficult because Chrome.exe and + # Chrome.dll share the same base name. As result, windbg will + # name the Chrome.dll module like chrome_, where + # typically changes with each launch. This in turn + # means that breakpoints in Chrome.dll don't stick from one launch + # to the next. For this reason, we turn ASLR off in debug builds. + # Note that this is a three-way bool, where 0 means to pick up + # the default setting, 1 is off and 2 is on. + 'RandomizedBaseAddress': 1, + }, + 'VCResourceCompilerTool': { + 'PreprocessorDefinitions': ['_DEBUG'], + }, + }, + 'variables': { + 'clang_warning_flags': [ + # Allow comparing the address of references and 'this' against 0 + # in debug builds. Technically, these can never be null in + # well-defined C/C++ and Clang can optimize such checks away in + # release builds, but they may be used in asserts in debug builds. + '-Wno-undefined-bool-conversion', + '-Wno-tautological-undefined-compare', + ], + }, + 'conditions': [ + ['OS=="linux" or OS=="android"', { + 'target_conditions': [ + ['_toolset=="target"', { + 'cflags': [ + '<@(debug_extra_cflags)', + ], + }], + ], + }], + ['OS=="linux" and target_arch!="ia32" and disable_glibcxx_debug==0', { + # Enable libstdc++ debugging facilities to help catch problems + # early, see http://crbug.com/65151 . + # TODO(phajdan.jr): Should we enable this for all of POSIX? + 'defines': ['_GLIBCXX_DEBUG=1',], + }], + ['release_valgrind_build==0', { + 'xcode_settings': { + 'OTHER_CFLAGS': [ + '-fstack-protector-all', # Implies -fstack-protector + ], + }, + }], + ], + }, + 'Release_Base': { + 'abstract': 1, + 'defines': [ + 'NDEBUG', + ], + 'xcode_settings': { + 'DEAD_CODE_STRIPPING': 'YES', # -Wl,-dead_strip + 'GCC_OPTIMIZATION_LEVEL': '<(mac_release_optimization)', + 'OTHER_CFLAGS': [ '<@(release_extra_cflags)', ], + }, + 'msvs_settings': { + 'VCCLCompilerTool': { + 'RuntimeLibrary': '<(win_release_RuntimeLibrary)', + 'conditions': [ + # In official builds, each target will self-select + # an optimization level. + ['buildtype!="Official"', { + 'Optimization': '<(win_release_Optimization)', + }, + ], + # According to MSVS, InlineFunctionExpansion=0 means + # "default inlining", not "/Ob0". + # Thus, we have to handle InlineFunctionExpansion==0 separately. + ['win_release_InlineFunctionExpansion==0', { + 'AdditionalOptions': ['/Ob0'], + }], + ['win_release_InlineFunctionExpansion!=""', { + 'InlineFunctionExpansion': + '<(win_release_InlineFunctionExpansion)', + }], + + # if win_release_OmitFramePointers is blank, leave as default + ['win_release_OmitFramePointers==1', { + 'OmitFramePointers': 'true', + }], + ['win_release_OmitFramePointers==0', { + 'OmitFramePointers': 'false', + # The above is not sufficient (http://crbug.com/106711): it + # simply eliminates an explicit "/Oy", but both /O2 and /Ox + # perform FPO regardless, so we must explicitly disable. + # We still want the false setting above to avoid having + # "/Oy /Oy-" and warnings about overriding. + 'AdditionalOptions': ['/Oy-'], + }], + ['asan==0', { + # Put data in separate COMDATs. This allows the linker + # to put bit-identical constants at the same address even if + # they're unrelated constants, which saves binary size. + # This optimization can't be used when ASan is enabled because + # it is not compatible with the ASan ODR checker. + 'AdditionalOptions': ['/Gw'], + }], + ], + 'AdditionalOptions': [ + '/d2Zi+', # Improve debugging of Release builds. + '/Zc:inline', # Remove unreferenced COMDAT (faster links). + '<@(win_release_extra_cflags)', + ], + }, + 'VCLinkerTool': { + # LinkIncremental is a tri-state boolean, where 0 means default + # (i.e., inherit from parent solution), 1 means false, and + # 2 means true. + 'LinkIncremental': '1', + # This corresponds to the /PROFILE flag which ensures the PDB + # file contains FIXUP information (growing the PDB file by about + # 5%) but does not otherwise alter the output binary. This + # information is used by the Syzygy optimization tool when + # decomposing the release image. + 'Profile': 'true', + }, + }, + 'conditions': [ + ['msvs_use_common_release', { + 'includes': ['release.gypi'], + }], + ['release_valgrind_build==0 and tsan==0', { + 'defines': [ + 'NVALGRIND', + 'DYNAMIC_ANNOTATIONS_ENABLED=0', + ], + }, { + 'defines': [ + 'MEMORY_TOOL_REPLACES_ALLOCATOR', + 'MEMORY_SANITIZER_INITIAL_SIZE', + 'DYNAMIC_ANNOTATIONS_ENABLED=1', + 'WTF_USE_DYNAMIC_ANNOTATIONS=1', + ], + }], + ['OS=="win"', { + 'defines': ['NO_TCMALLOC'], + }], + # _FORTIFY_SOURCE isn't really supported by Clang now, see + # http://llvm.org/bugs/show_bug.cgi?id=16821. + # It seems to work fine with Ubuntu 12 headers though, so use it + # in official builds. + ['os_posix==1 and (asan!=1 and msan!=1 and tsan!=1 and lsan!=1 and ubsan!=1) and (OS!="linux" or clang!=1 or buildtype=="Official")', { + 'target_conditions': [ + ['chromium_code==1', { + # Non-chromium code is not guaranteed to compile cleanly + # with _FORTIFY_SOURCE. Also, fortified build may fail + # when optimizations are disabled, so only do that for Release + # build. + 'defines': [ + '_FORTIFY_SOURCE=2', + ], + }], + ], + }], + ['OS=="linux" or OS=="android"', { + 'target_conditions': [ + ['_toolset=="target"', { + 'cflags': [ + '<@(release_extra_cflags)', + ], + 'conditions': [ + ['enable_resource_whitelist_generation==1', { + 'cflags': [ + '-Wunknown-pragmas -Wno-error=unknown-pragmas', + ], + }], + ], + }], + ], + }], + ['OS=="ios"', { + 'defines': [ + 'NS_BLOCK_ASSERTIONS=1', + ], + }], + # Force disable blink assertions on Cast device builds (overriding DCHECK_ALWAYS_ON) + # Only defined for Release builds (NDEBUG), otherwise blink won't compile. + ['chromecast==1 and OS=="linux" and is_cast_desktop_build==0', { + 'defines': ['ENABLE_ASSERT=0'], + }], + ], + }, + # + # Concrete configurations + # + 'Debug': { + 'inherit_from': ['Common_Base', 'x86_Base', 'Debug_Base'], + }, + 'Release': { + 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'], + }, + 'conditions': [ + [ 'OS=="ios"', { + 'Profile': { + 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'], + 'target_conditions': [ + [ '_type=="executable"', { + # To get a real .dSYM bundle produced by dsymutil, set the + # debug information format to dwarf-with-dsym. Since + # strip_from_xcode will not be used, set Xcode to do the + # stripping as well. + 'xcode_settings': { + 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym', + 'DEPLOYMENT_POSTPROCESSING': 'YES', + 'STRIP_INSTALLED_PRODUCT': 'YES', + }, + }], + ], + }, + }], + [ 'OS=="win"', { + # TODO(bradnelson): add a gyp mechanism to make this more graceful. + 'Debug_x64': { + 'inherit_from': ['Common_Base', 'x64_Base', 'Debug_Base'], + }, + 'Release_x64': { + 'inherit_from': ['Common_Base', 'x64_Base', 'Release_Base'], + }, + }], + ], + }, + }, + 'conditions': [ + ['os_posix==1', { + 'target_defaults': { + 'ldflags': [ + '-Wl,-z,now', + '-Wl,-z,relro', + ], + # TODO(glider): enable the default options on other systems. + 'conditions': [ + ['use_sanitizer_options==1 and ((OS=="linux" and (chromeos==0 or target_arch!="ia32")) or OS=="mac")', { + 'dependencies': [ + '<(DEPTH)/build/sanitizers/sanitizers.gyp:sanitizer_options', + ], + }], + ], + }, + }], + # TODO(jochen): Enable this on chromeos on arm. http://crbug.com/356580 + ['os_posix==1 and disable_fatal_linker_warnings==0 and use_evdev_gestures==0 and (chromeos==0 or target_arch!="arm")', { + 'target_defaults': { + 'ldflags': [ + '-Wl,--fatal-warnings', + ], + }, + }], + # -Wl,-z,-defs doesn't work with the sanitiziers, http://crbug.com/452065 + ['(OS=="linux" or OS=="android") and asan==0 and msan==0 and tsan==0 and ubsan==0 and ubsan_vptr==0 and cfi_diag==0', { + 'target_defaults': { + 'ldflags': [ + '-Wl,-z,defs', + ], + }, + }], + ['os_posix==1 and chromeos==0', { + # Chrome OS enables -fstack-protector-strong via its build wrapper, + # and we want to avoid overriding this, so stack-protector is only + # enabled when not building on Chrome OS. + # TODO(phajdan.jr): Use -fstack-protector-strong when our gcc + # supports it. + 'target_defaults': { + 'cflags': [ + '-fstack-protector', + '--param=ssp-buffer-size=4', + ], + }, + }], + ['os_posix==1 and OS=="linux"', { + 'defines': [ + '_LARGEFILE_SOURCE', + '_LARGEFILE64_SOURCE', + '_FILE_OFFSET_BITS=64', + ], + }], + ['os_posix==1 and OS!="mac" and OS!="ios"', { + 'target_defaults': { + # Enable -Werror by default, but put it in a variable so it can + # be disabled in ~/.gyp/include.gypi on the valgrind builders. + 'variables': { + 'werror%': '-Werror', + 'libraries_for_target%': '', + 'conditions' : [ + # Enable -Wextra for chromium_code when we control the compiler. + ['clang==1', { 'wextra': '-Wextra' }, { 'wextra': '-Wno-extra' }], + ], + }, + 'defines': [ + '_FILE_OFFSET_BITS=64', + ], + 'cflags': [ + '<(werror)', # See note above about the werror variable. + '-pthread', + '-fno-strict-aliasing', # See http://crbug.com/32204 + '-Wall', + '<(wextra)', + # Don't warn about unused function params. We use those everywhere. + '-Wno-unused-parameter', + # Don't warn about the "struct foo f = {0};" initialization pattern. + '-Wno-missing-field-initializers', + # Don't export any symbols (for example, to plugins we dlopen()). + # Note: this is *required* to make some plugins work. + '-fvisibility=hidden', + '-pipe', + ], + 'cflags_cc': [ + '-fno-exceptions', + '-fno-rtti', + '-fno-threadsafe-statics', + # Make inline functions have hidden visiblity by default. + # Surprisingly, not covered by -fvisibility=hidden. + '-fvisibility-inlines-hidden', + ], + 'ldflags': [ + '-pthread', '-Wl,-z,noexecstack', + ], + 'libraries' : [ + '<(libraries_for_target)', + ], + 'configurations': { + 'Debug_Base': { + 'variables': { + 'debug_optimize%': '0', + }, + 'defines': [ + '_DEBUG', + ], + 'cflags': [ + '-O>(debug_optimize)', + '-g', + ], + 'conditions' : [ + ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64el"', { + # TODO(jdduke) Re-enable on mips after resolving linking + # issues with libc++ (crbug.com/456380). + 'ldflags': [ + # Warn in case of text relocations. + '-Wl,--warn-shared-textrel', + ], + }], + ['OS=="android" and android_full_debug==0', { + # Some configurations are copied from Release_Base to reduce + # the binary size. + 'variables': { + 'debug_optimize%': 's', + }, + 'cflags': [ + '-fdata-sections', + '-ffunction-sections', + ], + 'ldflags': [ + '-Wl,-O1', + '-Wl,--as-needed', + ], + }], + ['OS=="android" and android_full_debug==0 and target_arch!="arm64"', { + # We don't omit frame pointers on arm64 since they are required + # to correctly unwind stackframes which contain system library + # function frames (crbug.com/391706). + 'cflags': [ + '-fomit-frame-pointer', + ], + }], + ['OS=="linux" and target_arch=="ia32"', { + 'ldflags': [ + '-Wl,--no-as-needed', + ], + }], + ['debug_unwind_tables==1', { + 'cflags': ['-funwind-tables'], + }, { + 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'], + 'defines': ['NO_UNWIND_TABLES'], + }], + ['linux_use_debug_fission==1 and linux_use_gold_flags==1 and binutils_version>=223', { + 'cflags': ['-gsplit-dwarf'], + }], + ], + }, + 'Release_Base': { + 'variables': { + 'release_optimize%': '2', + # Binaries become big and gold is unable to perform GC + # and remove unused sections for some of test targets + # on 32 bit platform. + # (This is currently observed only in chromeos valgrind bots) + # The following flag is to disable --gc-sections linker + # option for these bots. + 'no_gc_sections%': 0, + + # TODO(bradnelson): reexamine how this is done if we change the + # expansion of configurations + 'release_valgrind_build%': 0, + }, + 'cflags': [ + '-O<(release_optimize)', + # Don't emit the GCC version ident directives, they just end up + # in the .comment section taking up binary size. + '-fno-ident', + # Put data and code in their own sections, so that unused symbols + # can be removed at link time with --gc-sections. + '-fdata-sections', + '-ffunction-sections', + ], + 'ldflags': [ + # Specifically tell the linker to perform optimizations. + # See http://lwn.net/Articles/192624/ . + '-Wl,-O1', + '-Wl,--as-needed', + ], + 'conditions' : [ + ['no_gc_sections==0', { + 'ldflags': [ + '-Wl,--gc-sections', + ], + }], + ['OS=="android" and target_arch!="arm64"', { + # We don't omit frame pointers on arm64 since they are required + # to correctly unwind stackframes which contain system library + # function frames (crbug.com/391706). + 'cflags': [ + '-fomit-frame-pointer', + ] + }], + ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64el"', { + # TODO(jdduke) Re-enable on mips after resolving linking + # issues with libc++ (crbug.com/456380). + 'ldflags': [ + # Warn in case of text relocations. + '-Wl,--warn-shared-textrel', + ], + }], + ['OS=="android"', { + 'variables': { + 'release_optimize%': 's', + }, + }], + ['profiling==1', { + 'cflags': [ + '-fno-omit-frame-pointer', + '-g', + ], + 'conditions' : [ + ['profiling_full_stack_frames==1', { + 'cflags': [ + '-fno-inline', + '-fno-optimize-sibling-calls', + ], + }], + ], + }], + ['release_unwind_tables==1', { + 'cflags': ['-funwind-tables'], + }, { + 'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'], + 'defines': ['NO_UNWIND_TABLES'], + }], + ], + }, + }, + 'conditions': [ + ['target_arch=="ia32"', { + 'target_conditions': [ + ['_toolset=="target"', { + 'asflags': [ + # Needed so that libs with .s files (e.g. libicudata.a) + # are compatible with the general 32-bit-ness. + '-32', + ], + # All floating-point computations on x87 happens in 80-bit + # precision. Because the C and C++ language standards allow + # the compiler to keep the floating-point values in higher + # precision than what's specified in the source and doing so + # is more efficient than constantly rounding up to 64-bit or + # 32-bit precision as specified in the source, the compiler, + # especially in the optimized mode, tries very hard to keep + # values in x87 floating-point stack (in 80-bit precision) + # as long as possible. This has important side effects, that + # the real value used in computation may change depending on + # how the compiler did the optimization - that is, the value + # kept in 80-bit is different than the value rounded down to + # 64-bit or 32-bit. There are possible compiler options to + # make this behavior consistent (e.g. -ffloat-store would keep + # all floating-values in the memory, thus force them to be + # rounded to its original precision) but they have significant + # runtime performance penalty. + # + # -mfpmath=sse -msse2 makes the compiler use SSE instructions + # which keep floating-point values in SSE registers in its + # native precision (32-bit for single precision, and 64-bit + # for double precision values). This means the floating-point + # value used during computation does not change depending on + # how the compiler optimized the code, since the value is + # always kept in its specified precision. + # + # Refer to http://crbug.com/348761 for rationale behind SSE2 + # being a minimum requirement for 32-bit Linux builds and + # http://crbug.com/313032 for an example where this has "bit" + # us in the past. + 'cflags': [ + '-msse2', + '-mfpmath=sse', + '-mmmx', # Allows mmintrin.h for MMX intrinsics. + '-m32', + ], + 'ldflags': [ + '-m32', + ], + 'conditions': [ + # Use gold linker for Android ia32 target. + ['OS=="android"', { + # Use gold linker for Android ia32 target. + 'ldflags': [ + '-fuse-ld=gold', + ], + # Use -mstackrealign due to a bug on ia32 Jelly Bean. + # See crbug.com/521527 + 'cflags': [ + '-mstackrealign', + ], + }], + ], + }], + ], + }], + ['target_arch=="x64"', { + 'target_conditions': [ + ['_toolset=="target"', { + 'conditions': [ + # Use gold linker for Android x64 target. + ['OS=="android"', { + 'ldflags': [ + '-fuse-ld=gold', + ], + }], + ], + 'cflags': [ + '-m64', + '-march=x86-64', + ], + 'ldflags': [ + '-m64', + ], + }], + ], + }], + ['target_arch=="arm"', { + 'target_conditions': [ + ['_toolset=="target"', { + 'conditions': [ + ['clang==0', { + 'cflags_cc': [ + # The codesourcery arm-2009q3 toolchain warns at that the ABI + # has changed whenever it encounters a varargs function. This + # silences those warnings, as they are not helpful and + # clutter legitimate warnings. + '-Wno-abi', + ], + }], + ['clang==1 and arm_arch!="" and OS!="android"', { + 'cflags': [ + '-target arm-linux-gnueabihf', + ], + 'ldflags': [ + '-target arm-linux-gnueabihf', + ], + }], + ['arm_arch!=""', { + 'cflags': [ + '-march=<(arm_arch)', + ], + 'conditions': [ + ['use_lto==1 or use_lto_o2==1', { + 'ldflags': [ + '-march=<(arm_arch)', + ], + }], + ], + }], + ['arm_tune!=""', { + 'cflags': [ + '-mtune=<(arm_tune)', + ], + 'conditions': [ + ['use_lto==1 or use_lto_o2==1', { + 'ldflags': [ + '-mtune=<(arm_tune)', + ], + }], + ], + }], + ['arm_fpu!=""', { + 'cflags': [ + '-mfpu=<(arm_fpu)', + ], + 'conditions': [ + ['use_lto==1 or use_lto_o2==1', { + 'ldflags': [ + '-mfpu=<(arm_fpu)', + ], + }], + ], + }], + ['arm_float_abi!=""', { + 'cflags': [ + '-mfloat-abi=<(arm_float_abi)', + ], + 'conditions': [ + ['use_lto==1 or use_lto_o2==1', { + 'ldflags': [ + '-mfloat-abi=<(arm_float_abi)', + ], + }], + ], + }], + ['arm_thumb==1', { + 'cflags': [ + '-mthumb', + ], + 'conditions': [ + ['use_lto==1 or use_lto_o2==1', { + 'ldflags': [ + '-mthumb', + ], + }], + ], + }], + ['OS=="android"', { + # Most of the following flags are derived from what Android + # uses by default when building for arm, reference for which + # can be found in the following file in the Android NDK: + # toolchains/arm-linux-androideabi-4.9/setup.mk + 'cflags': [ + # The tree-sra optimization (scalar replacement for + # aggregates enabling subsequent optimizations) leads to + # invalid code generation when using the Android NDK's + # compiler (r5-r7). This can be verified using + # webkit_unit_tests' WTF.Checked_int8_t test. + '-fno-tree-sra', + # The following option is disabled to improve binary + # size and performance in gcc 4.9. + '-fno-caller-saves', + '-Wno-psabi', + ], + # Android now supports .relro sections properly. + # NOTE: While these flags enable the generation of .relro + # sections, the generated libraries can still be loaded on + # older Android platform versions. + 'ldflags': [ + '-Wl,-z,relro', + '-Wl,-z,now', + '-fuse-ld=gold', + ], + 'conditions': [ + ['arm_thumb==1', { + 'cflags': [ '-mthumb-interwork' ], + }], + ['profiling==1', { + 'cflags': [ + # Thumb code with frame pointer makes chrome crash + # early. + '-marm', + '-mapcs-frame', # Required by -fno-omit-frame-pointer. + # The perf report sometimes incorrectly attributes + # code from tail calls. + '-fno-optimize-sibling-calls', + ], + 'cflags!': [ + '-fomit-frame-pointer', + ], + }], + ['clang==1', { + 'cflags!': [ + # Clang does not support the following options. + '-mapcs-frame', + '-mthumb-interwork', + '-finline-limit=64', + '-fno-tree-sra', + '-fno-caller-saves', + '-Wno-psabi', + ], + }], + ['clang==1 and linux_use_bundled_gold==0', { + 'ldflags': [ + # Let clang find the ld.gold in the NDK. + '--gcc-toolchain=<(android_toolchain)/..', + ], + }], + ['asan==1', { + 'cflags': [ + '-marm', # Required for frame pointer based stack traces. + ], + }], + ], + }], + ['chromecast==1', { + 'cflags': [ + # We set arm_arch to "" so that -march compiler option + # is not set. Otherwise a gcc bug that would complain + # about it conflicting with '-mcpu=cortex-a9'. The flag + # '-march=armv7-a' is actually redundant anyway because + # it is enabled by default when we built the toolchain. + # And using '-mcpu=cortex-a9' should be sufficient. + '-mcpu=cortex-a9', + '-funwind-tables', + # Breakpad requires symbols with debugging information + '-g', + ], + 'ldflags': [ + # We want to statically link libstdc++/libgcc. + '-static-libstdc++', + '-static-libgcc', + # Don't allow visible symbols from libraries that contain + # assembly code with symbols that aren't hidden properly. + # http://b/26390825 + '-Wl,--exclude-libs=libffmpeg.a', + ], + 'cflags!': [ + # Some components in Chromium (e.g. v8, skia, ffmpeg) + # define their own cflags for arm builds that could + # conflict with the flags we set here (e.g. + # '-mcpu=cortex-a9'). Remove these flags explicitly. + '-march=armv7-a', + '-mtune=cortex-a8', + ], + 'target_conditions': [ + [ '_type=="executable" and OS!="android"', { + # Statically link whole libstdc++ and libgcc in + # executables to ensure only one copy at runtime. + 'ldflags': [ + # Note executables also get -static-stdlibc++/libgcc. + # Despite including libstdc++/libgcc archives, we + # still need to specify static linking for them in + # order to prevent the executable from having a + # dynamic dependency on them. + + # Export stdlibc++ and libgcc symbols to force shlibs + # to refer to these symbols from the executable. + '-Wl,--export-dynamic', + + '-lm', # stdlibc++ requires math.h + + # In case we redefined stdlibc++ symbols + # (e.g. tc_malloc) + '-Wl,--allow-multiple-definition', + + '-Wl,--whole-archive', + '-l:libstdc++.a', + '-l:libgcc.a', + '-Wl,--no-whole-archive', + ], + }] + ], + }], + ], + }], + ], + }], + ['target_arch=="arm64"', { + 'target_conditions': [ + ['_toolset=="target"', { + 'conditions': [ + ['OS=="android"', { + 'cflags!': [ + '-fstack-protector', # stack protector is always enabled on arm64. + ], + }], + ], + }], + ], + }], + ['target_arch=="mipsel"', { + 'target_conditions': [ + ['_toolset=="target"', { + 'conditions': [ + ['mips_arch_variant=="r6"', { + 'conditions': [ + ['clang==1', { + 'cflags': [ '-target mipsel-linux-gnu', '-march=mips32r6', ], + 'ldflags': [ '-target mipsel-linux-gnu', ], + }, { # clang==0 + 'cflags': ['-mips32r6', '-Wa,-mips32r6', ], + }], + ['clang==0 and OS=="android"', { + 'ldflags': ['-mips32r6', '-Wl,-melf32ltsmip',], + }], + ], + }], + ['mips_arch_variant=="r2"', { + 'conditions': [ + ['mips_float_abi=="hard" and mips_fpu_mode!=""', { + 'cflags': ['-m<(mips_fpu_mode)'], + }], + ['clang==1', { + 'conditions': [ + ['OS=="android"', { + 'cflags': [ '-target mipsel-linux-android', '-march=mipsel', '-mcpu=mips32r2'], + 'ldflags': [ '-target mipsel-linux-android', ], + }, { + 'cflags': [ '-target mipsel-linux-gnu', '-march=mipsel', '-mcpu=mips32r2'], + 'ldflags': [ '-target mipsel-linux-gnu', ], + }], + ], + }, { # clang==0 + 'cflags': ['-mips32r2', '-Wa,-mips32r2', ], + }], + ], + }], + ['mips_arch_variant=="r1"', { + 'conditions': [ + ['clang==1', { + 'conditions': [ + ['OS=="android"', { + 'cflags': [ '-target mipsel-linux-android', '-march=mipsel', '-mcpu=mips32'], + 'ldflags': [ '-target mipsel-linux-android', ], + }, { + 'cflags': [ '-target mipsel-linux-gnu', '-march=mipsel', '-mcpu=mips32'], + 'ldflags': [ '-target mipsel-linux-gnu', ], + }], + ], + }, { # clang==0 + 'cflags': ['-mips32', '-Wa,-mips32', ], + }], + ], + }], + ['clang==1', { + 'cflags!': [ + # Clang does not support the following options. + '-finline-limit=64', + ], + # TODO(gordanac) Enable integrated-as. + 'cflags': [ '-fno-integrated-as' ], + 'conditions': [ + ['OS=="android"', { + 'cflags': [ + # Else /usr/bin/as gets picked up. + '-B<(android_toolchain)', + ], + }], + ], + }], + ['clang==1 and OS=="android"', { + 'ldflags': [ + # Let clang find the ld in the NDK. + '--gcc-toolchain=<(android_toolchain)/..', + ], + }], + ['mips_dsp_rev==1', { + 'cflags': ['-mdsp'], + }], + ['mips_dsp_rev==2', { + 'cflags': ['-mdspr2'], + }], + ], + 'cflags': [ + '-m<(mips_float_abi)-float' + ], + 'ldflags': [ + '-Wl,--no-keep-memory' + ], + 'cflags_cc': [ + '-Wno-uninitialized', + ], + }], + ], + }], + ['target_arch=="mips64el"', { + 'target_conditions': [ + ['_toolset=="target"', { + 'conditions': [ + ['mips_arch_variant=="r6"', { + 'cflags': ['-mips64r6', '-Wa,-mips64r6'], + 'ldflags': ['-mips64r6'], + }], + ['mips_arch_variant=="r2"', { + 'cflags': ['-mips64r2', '-Wa,-mips64r2'], + 'ldflags': ['-mips64r2'], + }], + ], + 'cflags_cc': [ + '-Wno-uninitialized', + ], + }], + ], + }], + ['linux_fpic==1', { + 'cflags': [ + '-fPIC', + ], + 'ldflags': [ + '-fPIC', + ], + }], + ['sysroot!=""', { + 'target_conditions': [ + ['_toolset=="target"', { + 'cflags': [ + '--sysroot=<(sysroot)', + ], + 'ldflags': [ + '--sysroot=<(sysroot)', + '1 or sanitizer_coverage>1) and target_arch=="arm"', { + 'target_conditions': [ + ['_toolset=="target"', { + 'cflags': [ + '-mllvm -sanitizer-coverage-block-threshold=0', # http://crbug.com/517105 + ], + }], + ], + }], + ['asan_field_padding!=0', { + 'target_conditions': [ + ['_toolset=="target"', { + 'cflags': [ + '-fsanitize-address-field-padding=<(asan_field_padding)', + ], + }], + ], + }], + ['lsan==1', { + 'target_conditions': [ + ['_toolset=="target"', { + 'cflags': [ + '-fsanitize=leak', + ], + 'ldflags': [ + '-fsanitize=leak', + ], + 'defines': [ + 'LEAK_SANITIZER', + 'WTF_USE_LEAK_SANITIZER=1', + ], + }], + ], + }], + ['tsan==1', { + 'target_conditions': [ + ['_toolset=="target"', { + 'cflags': [ + '-fsanitize=thread', + '-fsanitize-blacklist=<(tsan_blacklist)', + ], + 'ldflags': [ + '-fsanitize=thread', + ], + 'defines': [ + 'THREAD_SANITIZER', + 'DYNAMIC_ANNOTATIONS_EXTERNAL_IMPL=1', + 'WTF_USE_DYNAMIC_ANNOTATIONS_NOIMPL=1', + ], + }], + ], + }], + ['msan==1', { + 'target_conditions': [ + ['_toolset=="target"', { + 'cflags': [ + '-fsanitize=memory', + '-fsanitize-memory-track-origins=<(msan_track_origins)', + '-fsanitize-blacklist=<(msan_blacklist)', + ], + 'ldflags': [ + '-fsanitize=memory', + ], + 'defines': [ + 'MEMORY_SANITIZER', + ], + }], + ], + }], + ['use_instrumented_libraries==1', { + 'dependencies': [ + '<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:instrumented_libraries', + ], + }], + ['use_prebuilt_instrumented_libraries==1', { + 'dependencies': [ + '<(DEPTH)/third_party/instrumented_libraries/instrumented_libraries.gyp:prebuilt_instrumented_libraries', + ], + }], + ['use_custom_libcxx==1', { + 'dependencies': [ + '<(DEPTH)/buildtools/third_party/libc++/libc++.gyp:libcxx_proxy', + ], + }], + ['order_profiling!=0 and OS=="android"', { + 'target_conditions' : [ + ['_toolset=="target"', { + 'cflags': ['-finstrument-functions'], + 'defines': ['CYGPROFILE_INSTRUMENTATION'], + }], + ], + }], + # Clang doesn't understand -finstrument-functions-exclude-file-list=. + ['order_profiling!=0 and OS=="android" and clang==0', { + 'target_conditions' : [ + ['_toolset=="target"', { + 'cflags': [ + # Allow mmx intrinsics to inline, so that the + # compiler can expand the intrinsics. + '-finstrument-functions-exclude-file-list=mmintrin.h', + # Avoids errors with current NDK: + # "third_party/android_tools/ndk/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/bin/../lib/gcc/arm-linux-androideabi/4.6/include/arm_neon.h:3426:3: error: argument must be a constant" + '-finstrument-functions-exclude-file-list=arm_neon.h', + ], + }], + ], + }], + ['linux_dump_symbols==1', { + 'cflags': [ '-g' ], + 'conditions': [ + ['OS=="linux" and host_arch=="ia32" and linux_use_bundled_gold==0', { + 'target_conditions': [ + ['_toolset=="target"', { + 'ldflags': [ + # Attempt to use less memory to prevent the linker from + # running out of address space. Considering installing a + # 64-bit kernel and switching to a 64-bit linker. + '-Wl,--no-keep-memory', + ], + }], + ], + }], + ], + }], + ['use_allocator!="tcmalloc"', { + 'defines': ['NO_TCMALLOC'], + }], + ['linux_use_gold_flags==1', { + # Newer gccs and clangs support -fuse-ld, use the flag to force gold + # selection. + # gcc -- http://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Optimize-Options.html + 'ldflags': [ '-fuse-ld=gold', ], + + 'target_conditions': [ + ['_toolset=="target"', { + 'ldflags': [ + # Experimentation found that using four linking threads + # saved ~20% of link time. + # https://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/281527606915bb36 + # Only apply this to the target linker, since the host + # linker might not be gold, but isn't used much anyway. + # TODO(raymes): Disable threading because gold is frequently + # crashing on the bots: crbug.com/161942. + # '-Wl,--threads', + # '-Wl,--thread-count=4', + ], + 'conditions': [ + # TODO(thestig): Enable this for disabled cases. + [ 'buildtype!="Official" and chromeos==0 and release_valgrind_build==0 and asan==0 and lsan==0 and tsan==0 and msan==0 and ubsan==0 and ubsan_vptr==0', { + 'ldflags': [ + '-Wl,--detect-odr-violations', + ], + }], + ], + }], + ], + 'conditions': [ + ['release_valgrind_build==0 and order_profiling==0 and asan==0 and msan==0 and lsan==0 and tsan==0', { + 'target_conditions': [ + ['_toolset=="target"', { + 'ldflags': [ + '-Wl,--icf=<(gold_icf_level)', + ], + }], + ], + }], + ], + }], + ['linux_use_bundled_binutils==1', { + 'cflags': [ + '-B=223', { + # Newer binutils don't set DT_RPATH unless you disable "new" dtags + # and the new DT_RUNPATH doesn't work without --no-as-needed flag. + # FIXME(mithro): Figure out the --as-needed/--no-as-needed flags + # inside this file to allow usage of --no-as-needed and removal of + # this flag. + 'ldflags': [ + '-Wl,--disable-new-dtags', + ], + }], + ['clang==0', { + 'target_conditions': [ + ['_toolset=="target"', { + 'cflags_cc': [ + '-std=gnu++11', + # See comment for -Wno-c++11-narrowing. + '-Wno-narrowing', + ], + }], + ], + }], + ['clang==0 and host_clang==0', { + 'target_conditions': [ + ['_toolset=="host"', { + 'cflags_cc': [ + '-std=gnu++11', + # See comment for -Wno-c++11-narrowing. + '-Wno-narrowing', + ], + }], + ], + }], + ['clang==0 and chromeos==1', { + 'target_conditions': [ + ['_toolset=="target"', { + 'cflags_cc': [ + # TODO(thakis): Remove, http://crbug.com/263960 + '-Wno-literal-suffix', + ], + }], + ], + }], + ['clang==0 and host_clang==0 and chromeos==1', { + 'target_conditions': [ + ['_toolset=="host"', { + 'cflags_cc': [ + # TODO(thakis): Remove, http://crbug.com/263960 + '-Wno-literal-suffix', + ], + }], + ], + }], + ], + }, + }], + # FreeBSD-specific options; note that most FreeBSD options are set above, + # with Linux. + ['OS=="freebsd"', { + 'target_defaults': { + 'ldflags': [ + '-Wl,--no-keep-memory', + ], + }, + }], + # Android-specific options; note that most are set above with Linux. + ['OS=="android"', { + 'variables': { + # This is a unique identifier for a given build. It's used for + # identifying various build artifacts corresponding to a particular + # build of chrome (e.g. where to find archived symbols). + 'chrome_build_id%': '', + + # Placing this variable here prevents from forking libvpx, used + # by remoting. Remoting is off, so it needn't built, + # so forking it's deps seems like overkill. + # But this variable need defined to properly run gyp. + # A proper solution is to have an OS==android conditional + # in third_party/libvpx_new/libvpx.gyp to define it. + 'libvpx_path': 'lib/linux/arm', + }, + 'target_defaults': { + 'variables': { + 'release_extra_cflags%': '', + 'conditions': [ + # If we're using the components build, append "cr" to all shared + # libraries to avoid naming collisions with android system library + # versions with the same name (e.g. skia, icu). + ['component=="shared_library"', { + 'android_product_extension': 'cr.so', + }, { + 'android_product_extension': 'so', + } ], + ], + }, + 'target_conditions': [ + ['_type=="shared_library"', { + 'product_extension': '<(android_product_extension)', + }], + + # Settings for building device targets using Android's toolchain. + # These are based on the setup.mk file from the Android NDK. + # + # The NDK Android executable link step looks as follows: + # $LDFLAGS + # $(TARGET_CRTBEGIN_DYNAMIC_O) <-- crtbegin.o + # $(PRIVATE_OBJECTS) <-- The .o that we built + # $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built + # $(TARGET_LIBGCC) <-- libgcc.a + # $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built + # $(PRIVATE_LDLIBS) <-- System .so + # $(TARGET_CRTEND_O) <-- crtend.o + # + # For now the above are approximated for executables by adding + # crtbegin.o to the end of the ldflags and 'crtend.o' to the end + # of 'libraries'. + # + # The NDK Android shared library link step looks as follows: + # $LDFLAGS + # $(PRIVATE_OBJECTS) <-- The .o that we built + # -l,--whole-archive + # $(PRIVATE_WHOLE_STATIC_LIBRARIES) + # -l,--no-whole-archive + # $(PRIVATE_STATIC_LIBRARIES) <-- The .a that we built + # $(TARGET_LIBGCC) <-- libgcc.a + # $(PRIVATE_SHARED_LIBRARIES) <-- The .so that we built + # $(PRIVATE_LDLIBS) <-- System .so + # + # For now, assume that whole static libraries are not needed. + # + # For both executables and shared libraries, add the proper + # libgcc.a to the start of libraries which puts it in the + # proper spot after .o and .a files get linked in. + # + # TODO: The proper thing to do longer-tem would be proper gyp + # support for a custom link command line. + ['_toolset=="target"', { + 'cflags!': [ + '-pthread', # Not supported by Android toolchain. + ], + 'cflags': [ + '-ffunction-sections', + '-funwind-tables', + '-g', + '-fstack-protector', + '-fno-short-enums', + '-finline-limit=64', + '<@(release_extra_cflags)', + '--sysroot=<(android_ndk_sysroot)', + # NOTE: The libc++ header include paths below are specified in + # cflags rather than include_dirs because they need to come + # after include_dirs. + # The include ordering here is important; change with caution. + '-isystem<(android_libcpp_include)', + '-isystem<(android_ndk_root)/sources/cxx-stl/llvm-libc++abi/libcxxabi/include', + '-isystem<(android_ndk_root)/sources/android/support/include', + ], + 'defines': [ + 'ANDROID', + '__GNU_SOURCE=1', # Necessary for clone() + 'CHROME_BUILD_ID="<(chrome_build_id)"', + # The NDK has these things, but doesn't define the constants + # to say that it does. Define them here instead. + 'HAVE_SYS_UIO_H', + ], + 'ldflags!': [ + '-pthread', # Not supported by Android toolchain. + ], + 'ldflags': [ + '-Wl,--build-id=sha1', + '-Wl,--no-undefined', + '--sysroot=<(android_ndk_sysroot)', + '-nostdlib', + '-L<(android_libcpp_libs_dir)', + # Don't allow visible symbols from libgcc or libc++ to be + # re-exported. + '-Wl,--exclude-libs=libgcc.a', + '-Wl,--exclude-libs=libc++_static.a', + # Don't allow visible symbols from libraries that contain + # assembly code with symbols that aren't hidden properly. + # http://crbug.com/448386 + '-Wl,--exclude-libs=libcommon_audio.a', + '-Wl,--exclude-libs=libcommon_audio_neon.a', + '-Wl,--exclude-libs=libcommon_audio_sse2.a', + '-Wl,--exclude-libs=libiSACFix.a', + '-Wl,--exclude-libs=libisac_neon.a', + '-Wl,--exclude-libs=libopus.a', + '-Wl,--exclude-libs=libvpx.a', + ], + 'libraries': [ + '-l<(android_libcpp_library)', + '-latomic', + # Manually link the libgcc.a that the cross compiler uses. + '(_target_name).map', + ], + }, + }], + ], + }], + ['_mac_bundle', { + 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, + 'target_conditions': [ + ['_type=="executable"', { + 'conditions': [ + ['asan==1', { + 'postbuilds': [ + { + 'variables': { + # Define copy_asan_dylib_path in a variable ending in + # _path so that gyp understands it's a path and + # performs proper relativization during dict merging. + 'copy_asan_dylib_path': + 'mac/copy_asan_runtime_dylib.sh', + }, + 'postbuild_name': 'Copy ASan runtime dylib', + 'action': [ + '<(copy_asan_dylib_path)', + ], + }, + ], + }], + ], + }], + ], + }], + ], # target_conditions + }, # target_defaults + }], # OS=="mac" or OS=="ios" + ['OS=="mac"', { + 'target_defaults': { + 'defines': [ + # Prevent Mac OS X AssertMacros.h from defining macros that collide + # with common names, like 'check', 'require', and 'verify'. + # (Included by system header. Also exists on iOS but not included.) + # http://opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/AssertMacros.h + '__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORE=0', + ], + 'variables': { + # These should end with %, but there seems to be a bug with % in + # variables that are intended to be set to different values in + # different targets, like these. + 'mac_pie': 1, # Most executables can be position-independent. + # Strip debugging symbols from the target. + 'mac_strip': '<(mac_strip_release)', + 'conditions': [ + ['asan==1', { + 'conditions': [ + ['mac_want_real_dsym=="default"', { + 'mac_real_dsym': 1, + }, { + 'mac_real_dsym': '<(mac_want_real_dsym)' + }], + ], + }, { + 'conditions': [ + ['mac_want_real_dsym=="default"', { + 'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases. + }, { + 'mac_real_dsym': '<(mac_want_real_dsym)' + }], + ], + }], + ], + }, + 'configurations': { + 'Release_Base': { + 'conditions': [ + ['branding=="Chrome" and buildtype=="Official"', { + 'xcode_settings': { + 'OTHER_CFLAGS': [ + # The Google Chrome Framework dSYM generated by dsymutil has + # grown larger than 4GB, which dsymutil can't handle. Reduce + # the amount of debug symbols. + '-fno-standalone-debug', # See http://crbug.com/479841 + ] + }, + }], + ], + }, # configuration "Release" + }, # configurations + 'xcode_settings': { + # Tell the compiler to use libc++'s headers and the linker to link + # against libc++. The latter part normally requires OS X 10.7, + # but we still support running on 10.6. How does this work? Two + # parts: + # 1. Chromium's clang doesn't error on -mmacosx-version-min=10.6 + # combined with -stdlib=libc++ (it normally silently produced a + # binary that doesn't run on 10.6) + # 2. Further down, library_dirs is set to + # third_party/libc++-static, which contains a static + # libc++.a library. The linker then links against that instead + # of against /usr/lib/libc++.dylib when it sees the -lc++ flag + # added by the driver. + # + # In component builds, just link to the system libc++. This has + # the effect of making everything depend on libc++, which means + # component-build binaries won't run on 10.6 (no libc++ there), + # but for a developer-only configuration that's ok. (We don't + # want to raise the deployment target yet so that official and + # dev builds have the same deployment target. This affects + # things like which functions are considered deprecated.) + 'CLANG_CXX_LIBRARY': 'libc++', # -stdlib=libc++ + + 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic + # (Equivalent to -fPIC) + # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min + 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)', + # Keep pch files below xcodebuild/. + 'SHARED_PRECOMPS_DIR': '$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHeaders', + 'OTHER_CFLAGS': [ + # Someday this can be replaced by an 'GCC_STRICT_ALIASING': 'NO' + # xcode_setting, but not until all downstream projects' mac bots are + # using xcode >= 4.6, because that's when the default value of the + # flag in the compiler switched. Pre-4.6, the value 'NO' for that + # setting is a no-op as far as xcode is concerned, but the compiler + # behaves differently based on whether -fno-strict-aliasing is + # specified or not. + '-fno-strict-aliasing', # See http://crbug.com/32204. + ], + }, + 'target_conditions': [ + ['>(nacl_untrusted_build)==0 and component=="static_library"', { + # See the comment for CLANG_CXX_LIBRARY above for what this does. + # The NaCl toolchains have their own toolchain and don't need this. + # ASan requires 10.7+ and clang implicitly adds -lc++abi in ASan + # mode. Our libc++.a contains both libc++ and libc++abi in one + # library, so it doesn't work in that mode. + 'conditions': [ + ['asan==0', { + 'library_dirs': [ '<(DEPTH)/third_party/libc++-static' ], + }], + ], + }], + ['_type=="executable"', { + 'postbuilds': [ + { + # Arranges for data (heap) pages to be protected against + # code execution when running on Mac OS X 10.7 ("Lion"), and + # ensures that the position-independent executable (PIE) bit + # is set for ASLR when running on Mac OS X 10.5 ("Leopard"). + 'variables': { + # Define change_mach_o_flags in a variable ending in _path + # so that GYP understands it's a path and performs proper + # relativization during dict merging. + 'change_mach_o_flags_path': + 'mac/change_mach_o_flags_from_xcode.sh', + 'change_mach_o_flags_options%': [ + ], + 'target_conditions': [ + ['mac_pie==0 or release_valgrind_build==1', { + # Don't enable PIE if it's unwanted. It's unwanted if + # the target specifies mac_pie=0 or if building for + # Valgrind, because Valgrind doesn't understand slide. + # See the similar mac_pie/release_valgrind_build check + # below. + 'change_mach_o_flags_options': [ + '--no-pie', + ], + }], + ], + }, + 'postbuild_name': 'Change Mach-O Flags', + 'action': [ + '<(change_mach_o_flags_path)', + '>@(change_mach_o_flags_options)', + ], + }, + ], + 'target_conditions': [ + ['mac_pie==1 and release_valgrind_build==0', { + # Turn on position-independence (ASLR) for executables. When + # PIE is on for the Chrome executables, the framework will + # also be subject to ASLR. + # Don't do this when building for Valgrind, because Valgrind + # doesn't understand slide. TODO: Make Valgrind on Mac OS X + # understand slide, and get rid of the Valgrind check. + 'xcode_settings': { + 'OTHER_LDFLAGS': [ + '-Wl,-pie', # Position-independent executable (MH_PIE) + ], + }, + }], + ], + }], + ['(_type=="executable" or _type=="shared_library" or \ + _type=="loadable_module") and mac_strip!=0', { + 'target_conditions': [ + ['mac_real_dsym == 1', { + # To get a real .dSYM bundle produced by dsymutil, set the + # debug information format to dwarf-with-dsym. Since + # strip_from_xcode will not be used, set Xcode to do the + # stripping as well. + 'configurations': { + 'Release_Base': { + 'xcode_settings': { + 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym', + 'DEPLOYMENT_POSTPROCESSING': 'YES', + 'STRIP_INSTALLED_PRODUCT': 'YES', + 'conditions': [ + # Only strip non-ASan builds. + ['asan==0', { + 'target_conditions': [ + ['_type=="shared_library" or _type=="loadable_module"', { + # The Xcode default is to strip debugging symbols + # only (-S). Local symbols should be stripped as + # well, which will be handled by -x. Xcode will + # continue to insert -S when stripping even when + # additional flags are added with STRIPFLAGS. + 'STRIPFLAGS': '-x', + }], # _type=="shared_library" or _type=="loadable_module" + ], # target_conditions + }, { # asan != 0 + 'STRIPFLAGS': '-S', + }], + ], + }, # xcode_settings + }, # configuration "Release" + }, # configurations + }, { # mac_real_dsym != 1 + # To get a fast fake .dSYM bundle, use a post-build step to + # produce the .dSYM and strip the executable. strip_from_xcode + # only operates in the Release configuration. + 'postbuilds': [ + { + 'variables': { + # Define strip_from_xcode in a variable ending in _path + # so that gyp understands it's a path and performs proper + # relativization during dict merging. + 'strip_from_xcode_path': 'mac/strip_from_xcode', + }, + 'postbuild_name': 'Strip If Needed', + 'action': ['<(strip_from_xcode_path)'], + }, + ], # postbuilds + }], # mac_real_dsym + ], # target_conditions + }], # (_type=="executable" or _type=="shared_library" or + # _type=="loadable_module") and mac_strip!=0 + ], # target_conditions + }, # target_defaults + }], # OS=="mac" + ['OS=="ios"', { + 'includes': [ + 'ios/coverage.gypi', + ], + 'target_defaults': { + 'xcode_settings' : { + 'ENABLE_BITCODE': 'NO', + 'CLANG_CXX_LIBRARY': 'libc++', # -stdlib=libc++ + + 'conditions': [ + # Older Xcodes do not support -Wno-deprecated-register, so pass an + # additional flag to suppress the "unknown compiler option" error. + # Restrict this flag to builds that are either compiling with Xcode + # or compiling with Xcode's Clang. This will allow Ninja builds to + # continue failing on unknown compiler options. + # TODO(rohitrao): This flag is temporary and should be removed as + # soon as the iOS bots are updated to use Xcode 5.1. + ['clang_xcode==1', { + 'WARNING_CFLAGS': [ + '-Wno-unknown-warning-option', + # It's not possible to achieve nullability completeness before + # all builders are running Xcode 7. crbug.com/499809 + '-Wno-nullability-completeness', + ], + }], + + # Limit the valid architectures depending on "target_subarch". + # This need to include the "arm" architectures but also the "x86" + # ones (they are used when building for the simulator). + ['target_subarch=="arm32"', { + 'VALID_ARCHS': ['armv7', 'i386'], + }], + ['target_subarch=="arm64"', { + 'VALID_ARCHS': ['arm64', 'x86_64'], + }], + ['target_subarch=="both"', { + 'VALID_ARCHS': ['arm64', 'armv7', 'x86_64', 'i386'], + }], + ], + }, + 'target_conditions': [ + ['_toolset=="host"', { + 'xcode_settings': { + 'SDKROOT': 'macosx<(mac_sdk)', # -isysroot + 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)', + 'VALID_ARCHS': [ + 'x86_64', + ], + 'ARCHS': [ + 'x86_64', + ], + 'WARNING_CFLAGS': [ + # TODO(thakis): Remove this once the deployment target on OS X + # is 10.7 too, http://crbug.com/547071 + # In general, it is NOT OK to add -Wno-deprecated-declarations + # anywhere, you should instead fix your code instead. But host + # compiles on iOS are really mac compiles, so this will be fixed + # when the mac deployment target is increased. (Some of the + # fixes depend on OS X 10.7 so they can't be done before mac + # upgrades). + '-Wno-deprecated-declarations', + ], + }, + }], + ['_toolset=="target"', { + 'xcode_settings': { + # This section should be for overriding host settings. But, + # since we can't negate the iphone deployment target above, we + # instead set it here for target only. + 'IPHONEOS_DEPLOYMENT_TARGET': '<(ios_deployment_target)', + 'ARCHS': ['$(ARCHS_STANDARD_INCLUDING_64_BIT)'], + }, + }], + ['_type=="executable"', { + 'configurations': { + 'Release_Base': { + 'xcode_settings': { + 'DEPLOYMENT_POSTPROCESSING': 'YES', + 'STRIP_INSTALLED_PRODUCT': 'YES', + 'conditions': [ + ['buildtype!="Official"', { + # Remove dSYM to reduce build time. + 'DEBUG_INFORMATION_FORMAT': 'dwarf', + }], + ], + }, + }, + 'Debug_Base': { + 'xcode_settings': { + # Remove dSYM to reduce build time. + 'DEBUG_INFORMATION_FORMAT': 'dwarf', + }, + }, + }, + 'xcode_settings': { + 'conditions': [ + ['chromium_ios_signing', { + # iOS SDK wants everything for device signed. + 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer', + }, { + 'CODE_SIGNING_REQUIRED': 'NO', + 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': '', + }], + ], + }, + }], + ], # target_conditions + }, # target_defaults + }], # OS=="ios" + ['OS=="win"', { + 'target_defaults': { + 'defines': [ + '_WIN32_WINNT=0x0A00', + 'WINVER=0x0A00', + 'WIN32', + '_WINDOWS', + 'NOMINMAX', + 'PSAPI_VERSION=1', + '_CRT_RAND_S', + 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', + 'WIN32_LEAN_AND_MEAN', + '_ATL_NO_OPENGL', + '_SECURE_ATL', + # _HAS_EXCEPTIONS must match ExceptionHandling in msvs_settings. + '_HAS_EXCEPTIONS=0', + # Silence some warnings; we can't switch the the 'recommended' + # versions as they're not available on old OSs. + '_WINSOCK_DEPRECATED_NO_WARNINGS', + ], + 'conditions': [ + ['buildtype=="Official"', { + # In official builds, targets can self-select an optimization + # level by defining a variable named 'optimize', and setting it + # to one of + # - "size", optimizes for minimal code size - the default. + # - "speed", optimizes for speed over code size. + # - "max", whole program optimization and link-time code + # generation. This is very expensive and should be used + # sparingly. + 'variables': { + 'optimize%': 'size', + }, + 'msvs_settings': { + 'VCLinkerTool': { + # Set /LTCG for the official builds. + 'LinkTimeCodeGeneration': '1', + 'AdditionalOptions': [ + # Set the number of LTCG code-gen threads to eight. + # The default is four. This gives a 5-10% link speedup. + '/cgthreads:8', + ], + }, + }, + 'target_conditions': [ + ['optimize=="size"', { + 'msvs_settings': { + 'VCCLCompilerTool': { + # 1, optimizeMinSpace, Minimize Size (/O1) + 'Optimization': '1', + # 2, favorSize - Favor small code (/Os) + 'FavorSizeOrSpeed': '2', + }, + }, + }, + ], + # This config is used to avoid a problem in ffmpeg, see + # http://crbug.com/264459. + ['optimize=="size_no_ltcg"', { + 'msvs_settings': { + 'VCCLCompilerTool': { + # 1, optimizeMinSpace, Minimize Size (/O1) + 'Optimization': '1', + # 2, favorSize - Favor small code (/Os) + 'FavorSizeOrSpeed': '2', + }, + }, + }, + ], + ['optimize=="speed"', { + 'msvs_settings': { + 'VCCLCompilerTool': { + # 2, optimizeMaxSpeed, Maximize Speed (/O2) + 'Optimization': '2', + # 1, favorSpeed - Favor fast code (/Ot) + 'FavorSizeOrSpeed': '1', + }, + }, + }, + ], + ['optimize=="max"', { + # Disable Warning 4702 ("Unreachable code") for the WPO/PGO + # builds. Probably anything that this would catch that + # wouldn't be caught in a normal build isn't going to + # actually be a bug, so the incremental value of C4702 for + # PGO builds is likely very small. + 'msvs_disabled_warnings': [ + 4702 + ], + 'msvs_settings': { + 'VCCLCompilerTool': { + # 2, optimizeMaxSpeed, Maximize Speed (/O2) + 'Optimization': '2', + # 1, favorSpeed - Favor fast code (/Ot) + 'FavorSizeOrSpeed': '1', + # This implies link time code generation. + 'WholeProgramOptimization': 'true', + }, + }, + }, + ], + ], + }, + ], + ['msvs_xtree_patched!=1', { + # If xtree hasn't been patched, then we disable C4702. Otherwise, + # it's enabled. This will generally only be true for system-level + # installed Express users. + 'msvs_disabled_warnings': [ + 4702, # unreachable code + ], + }], + ], + 'msvs_system_include_dirs': [ + '<(windows_sdk_path)/Include/10.0.10586.0/shared', + '<(windows_sdk_path)/Include/10.0.10586.0/um', + '<(windows_sdk_path)/Include/10.0.10586.0/winrt', + '$(VSInstallDir)/VC/atlmfc/include', + ], + 'msvs_cygwin_shell': 0, + 'msvs_disabled_warnings': [ + # C4091: 'typedef ': ignored on left of 'X' when no variable is + # declared. + # This happens in a number of Windows headers. Dumb. + 4091, + + # C4127: conditional expression is constant + # This warning can in theory catch dead code and other problems, but + # triggers in far too many desirable cases where the conditional + # expression is either set by macros or corresponds some legitimate + # compile-time constant expression (due to constant template args, + # conditionals comparing the sizes of different types, etc.). Some of + # these can be worked around, but it's not worth it. + 4127, + + # C4351: new behavior: elements of array 'array' will be default + # initialized + # This is a silly "warning" that basically just alerts you that the + # compiler is going to actually follow the language spec like it's + # supposed to, instead of not following it like old buggy versions + # did. There's absolutely no reason to turn this on. + 4351, + + # C4355: 'this': used in base member initializer list + # It's commonly useful to pass |this| to objects in a class' + # initializer list. While this warning can catch real bugs, most of + # the time the constructors in question don't attempt to call methods + # on the passed-in pointer (until later), and annotating every legit + # usage of this is simply more hassle than the warning is worth. + 4355, + + # C4503: 'identifier': decorated name length exceeded, name was + # truncated + # This only means that some long error messages might have truncated + # identifiers in the presence of lots of templates. It has no effect + # on program correctness and there's no real reason to waste time + # trying to prevent it. + 4503, + + # Warning C4589 says: "Constructor of abstract class ignores + # initializer for virtual base class." Disable this warning because it + # is flaky in VS 2015 RTM. It triggers on compiler generated + # copy-constructors in some cases. + 4589, + + # C4611: interaction between 'function' and C++ object destruction is + # non-portable + # This warning is unavoidable when using e.g. setjmp/longjmp. MSDN + # suggests using exceptions instead of setjmp/longjmp for C++, but + # Chromium code compiles without exception support. We therefore have + # to use setjmp/longjmp for e.g. JPEG decode error handling, which + # means we have to turn off this warning (and be careful about how + # object destruction happens in such cases). + 4611, + + # TODO(maruel): These warnings are level 4. They will be slowly + # removed as code is fixed. + 4100, # Unreferenced formal parameter + 4121, # Alignment of a member was sensitive to packing + 4244, # Conversion from 'type1' to 'type2', possible loss of data + 4505, # Unreferenced local function has been removed + 4510, # Default constructor could not be generated + 4512, # Assignment operator could not be generated + 4610, # Object can never be instantiated + 4838, # Narrowing conversion. Doesn't seem to be very useful. + 4995, # 'X': name was marked as #pragma deprecated + 4996, # 'X': was declared deprecated (for GetVersionEx). + + # These are variable shadowing warnings that are new in VS2015. We + # should work through these at some point -- they may be removed from + # the RTM release in the /W4 set. + 4456, 4457, 4458, 4459, + + # TODO(brucedawson): http://crbug.com/554200 4312 is a VS + # 2015 64-bit warning for integer to larger pointer + 4312, + ], + 'msvs_settings': { + 'VCCLCompilerTool': { + 'AdditionalOptions': ['/MP'], + 'MinimalRebuild': 'false', + 'BufferSecurityCheck': 'true', + 'EnableFunctionLevelLinking': 'true', + 'RuntimeTypeInfo': 'false', + 'WarningLevel': '4', + 'WarnAsError': 'true', + 'DebugInformationFormat': '3', + # ExceptionHandling must match _HAS_EXCEPTIONS above. + 'ExceptionHandling': '0', + }, + 'VCLibrarianTool': { + 'AdditionalOptions': ['/ignore:4221'], + 'AdditionalLibraryDirectories': [ + '<(windows_sdk_path)/Lib/win8/um/x86', + ], + }, + 'VCLinkerTool': { + 'AdditionalDependencies': [ + 'wininet.lib', + 'dnsapi.lib', + 'version.lib', + 'msimg32.lib', + 'ws2_32.lib', + 'usp10.lib', + 'psapi.lib', + 'dbghelp.lib', + 'winmm.lib', + 'shlwapi.lib', + ], + 'AdditionalLibraryDirectories': [ + '<(windows_sdk_path)/Lib/win8/um/x86', + ], + 'GenerateDebugInformation': 'true', + 'MapFileName': '$(OutDir)\\$(TargetName).map', + 'FixedBaseAddress': '1', + # SubSystem values: + # 0 == not set + # 1 == /SUBSYSTEM:CONSOLE + # 2 == /SUBSYSTEM:WINDOWS + # Most of the executables we'll ever create are tests + # and utilities with console output. + 'SubSystem': '1', + }, + 'VCMIDLTool': { + 'GenerateStublessProxies': 'true', + 'TypeLibraryName': '$(InputName).tlb', + 'OutputDirectory': '$(IntDir)', + 'HeaderFileName': '$(InputName).h', + 'DLLDataFileName': '$(InputName).dlldata.c', + 'InterfaceIdentifierFileName': '$(InputName)_i.c', + 'ProxyFileName': '$(InputName)_p.c', + }, + 'VCResourceCompilerTool': { + 'Culture' : '1033', + 'AdditionalIncludeDirectories': [ + '<(DEPTH)', + '<(SHARED_INTERMEDIATE_DIR)', + ], + }, + 'target_conditions': [ + ['_type=="executable"', { + 'VCManifestTool': { + 'EmbedManifest': 'true', + }, + }], + ['_type=="executable" and ">(win_exe_compatibility_manifest)"!=""', { + 'VCManifestTool': { + 'AdditionalManifestFiles': [ + '>(win_exe_compatibility_manifest)', + ], + }, + }], + ], + 'conditions': [ + # Building with Clang on Windows is a work in progress and very + # experimental. See crbug.com/82385. + # Keep this in sync with the similar blocks in build/config/compiler/BUILD.gn + ['clang==1', { + 'VCCLCompilerTool': { + 'AdditionalOptions': [ + # Don't warn about unused function parameters. + # (This is also used on other platforms.) + '-Wno-unused-parameter', + # Don't warn about the "struct foo f = {0};" initialization + # pattern. + '-Wno-missing-field-initializers', + + # Many files use intrinsics without including this header. + # TODO(hans): Fix those files, or move this to sub-GYPs. + '/FIIntrin.h', + + # TODO(hans): Make this list shorter eventually, http://crbug.com/504657 + '-Qunused-arguments', # http://crbug.com/504658 + '-Wno-microsoft-enum-value', # http://crbug.com/505296 + '-Wno-unknown-pragmas', # http://crbug.com/505314 + '-Wno-microsoft-cast', # http://crbug.com/550065 + ], + }, + }], + ['clang==1 and clang_use_chrome_plugins==1', { + 'VCCLCompilerTool': { + 'AdditionalOptions': [ + '<@(clang_chrome_plugins_flags)', + ], + }, + }], + ['clang==1 and MSVS_VERSION == "2013"', { + 'VCCLCompilerTool': { + 'AdditionalOptions': [ + '-fmsc-version=1800', + ], + }, + }], + ['clang==1 and MSVS_VERSION == "2015"', { + 'VCCLCompilerTool': { + 'AdditionalOptions': [ + '-fmsc-version=1900', + ], + }, + }], + ['clang==1 and " + +#include "base/logging.h" +#include "base/strings/string_util.h" +#include "base/strings/stringprintf.h" + +// So long as these symbols are supplied to the final binary through an +// object file (as opposed to indirectly through a library), these pointers +// will override the CRT's symbols and direct the notifications to our hook. +// Alternatively referencing the ChromeDelayLoadHook function somehow will +// cause this declaration of these variables to take preference to the delay +// load runtime's defaults (in delayimp.lib). +const PfnDliHook __pfnDliNotifyHook2 = ChromeDelayLoadHook; +const PfnDliHook __pfnDliFailureHook2 = ChromeDelayLoadHook; + + +namespace { + +FARPROC OnPreLoadLibrary(DelayLoadInfo* info) { + // If the DLL name ends with "-delay.dll", this call is about one of our + // custom import libraries. In this case we need to snip the suffix off, + // and bind to the real DLL. + std::string dll_name(info->szDll); + const char kDelaySuffix[] = "-delay.dll"; + if (base::EndsWith(dll_name, kDelaySuffix, + base::CompareCase::INSENSITIVE_ASCII)) { + // Trim the "-delay.dll" suffix from the string. + dll_name.resize(dll_name.length() - (sizeof(kDelaySuffix) - 1)); + dll_name.append(".dll"); + + return reinterpret_cast(::LoadLibraryA(dll_name.c_str())); + } + + return NULL; +} + +} // namespace + +// This function is a delay load notification hook. It is invoked by the +// delay load support in the visual studio runtime. +// See http://msdn.microsoft.com/en-us/library/z9h1h6ty(v=vs.100).aspx for +// details. +extern "C" FARPROC WINAPI ChromeDelayLoadHook(unsigned reason, + DelayLoadInfo* info) { + switch (reason) { + case dliNoteStartProcessing: + case dliNoteEndProcessing: + // Nothing to do here. + break; + + case dliNotePreLoadLibrary: + return OnPreLoadLibrary(info); + break; + + case dliNotePreGetProcAddress: + // Nothing to do here. + break; + + case dliFailLoadLib: + case dliFailGetProc: + // Returning NULL from error notifications will cause the delay load + // runtime to raise a VcppException structured exception, that some code + // might want to handle. + return NULL; + break; + + default: + NOTREACHED() << "Impossible delay load notification."; + break; + } + + // Returning NULL causes the delay load machinery to perform default + // processing for this notification. + return NULL; +} diff --git a/src/chrome/browser/permissions/permission_uma_util.cc b/src/chrome/browser/permissions/permission_uma_util.cc new file mode 100644 index 0000000..a418d67 --- /dev/null +++ b/src/chrome/browser/permissions/permission_uma_util.cc @@ -0,0 +1,315 @@ +// Copyright 2014 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "chrome/browser/permissions/permission_uma_util.h" + +#include + +#include "base/metrics/histogram_macros.h" +#include "base/strings/stringprintf.h" +#include "chrome/browser/browser_process.h" +#include "chrome/browser/permissions/permission_manager.h" +#include "chrome/browser/permissions/permission_util.h" +#include "chrome/browser/profiles/profile.h" +#include "components/rappor/rappor_service.h" +#include "components/rappor/rappor_utils.h" +#include "content/public/browser/permission_type.h" +#include "content/public/common/origin_util.h" +#include "url/gurl.h" + +// UMA keys need to be statically initialized so plain function would not +// work. Use a Macro instead. +#define PERMISSION_ACTION_UMA(secure_origin, permission, permission_secure, \ + permission_insecure, action) \ + UMA_HISTOGRAM_ENUMERATION(permission, action, PERMISSION_ACTION_NUM); \ + if (secure_origin) { \ + UMA_HISTOGRAM_ENUMERATION(permission_secure, action, \ + PERMISSION_ACTION_NUM); \ + } else { \ + UMA_HISTOGRAM_ENUMERATION(permission_insecure, action, \ + PERMISSION_ACTION_NUM); \ + } + +using content::PermissionType; + +namespace { + +// Enum for UMA purposes, make sure you update histograms.xml if you add new +// permission actions. Never delete or reorder an entry; only add new entries +// immediately before PERMISSION_NUM +enum PermissionAction { + GRANTED = 0, + DENIED = 1, + DISMISSED = 2, + IGNORED = 3, + REVOKED = 4, + REENABLED = 5, + REQUESTED = 6, + + // Always keep this at the end. + PERMISSION_ACTION_NUM, +}; + +// Deprecated. This method is used for the single-dimensional RAPPOR metrics +// that are being replaced by the multi-dimensional ones. +const std::string GetRapporMetric(PermissionType permission, + PermissionAction action) { + std::string action_str; + switch (action) { + case GRANTED: + action_str = "Granted"; + break; + case DENIED: + action_str = "Denied"; + break; + case DISMISSED: + action_str = "Dismissed"; + break; + case IGNORED: + action_str = "Ignored"; + break; + case REVOKED: + action_str = "Revoked"; + break; + default: + NOTREACHED(); + break; + } + + std::string permission_str = + PermissionUtil::GetPermissionString(permission); + if (permission_str.empty()) + return ""; + return base::StringPrintf("ContentSettings.PermissionActions_%s.%s.Url", + permission_str.c_str(), action_str.c_str()); +} + +void RecordPermissionAction(PermissionType permission, + PermissionAction action, + const GURL& requesting_origin) { + bool secure_origin = content::IsOriginSecure(requesting_origin); + + switch (permission) { + case PermissionType::GEOLOCATION: + PERMISSION_ACTION_UMA( + secure_origin, + "Permissions.Action.Geolocation", + "Permissions.Action.SecureOrigin.Geolocation", + "Permissions.Action.InsecureOrigin.Geolocation", + action); + break; + case PermissionType::NOTIFICATIONS: + PERMISSION_ACTION_UMA( + secure_origin, + "Permissions.Action.Notifications", + "Permissions.Action.SecureOrigin.Notifications", + "Permissions.Action.InsecureOrigin.Notifications", + action); + break; + case PermissionType::MIDI_SYSEX: + PERMISSION_ACTION_UMA( + secure_origin, + "Permissions.Action.MidiSysEx", + "Permissions.Action.SecureOrigin.MidiSysEx", + "Permissions.Action.InsecureOrigin.MidiSysEx", + action); + break; + case PermissionType::PUSH_MESSAGING: + PERMISSION_ACTION_UMA( + secure_origin, + "Permissions.Action.PushMessaging", + "Permissions.Action.SecureOrigin.PushMessaging", + "Permissions.Action.InsecureOrigin.PushMessaging", + action); + break; + case PermissionType::PROTECTED_MEDIA_IDENTIFIER: + PERMISSION_ACTION_UMA( + secure_origin, + "Permissions.Action.ProtectedMedia", + "Permissions.Action.SecureOrigin.ProtectedMedia", + "Permissions.Action.InsecureOrigin.ProtectedMedia", + action); + break; + case PermissionType::DURABLE_STORAGE: + PERMISSION_ACTION_UMA( + secure_origin, + "Permissions.Action.DurableStorage", + "Permissions.Action.SecureOrigin.DurableStorage", + "Permissions.Action.InsecureOrigin.DurableStorage", + action); + break; + case PermissionType::AUDIO_CAPTURE: + // Media permissions are disabled on insecure origins, so there's no + // need to record metrics for secure/insecue. + UMA_HISTOGRAM_ENUMERATION("Permissions.Action.AudioCapture", action, + PERMISSION_ACTION_NUM); + break; + case PermissionType::VIDEO_CAPTURE: + UMA_HISTOGRAM_ENUMERATION("Permissions.Action.VideoCapture", action, + PERMISSION_ACTION_NUM); + break; + case PermissionType::MIDI: + case PermissionType::NUM: + NOTREACHED() << "PERMISSION " + << PermissionUtil::GetPermissionString(permission) + << " not accounted for"; + } + + // There are two sets of semi-redundant RAPPOR metrics being reported: + // The soon-to-be-deprecated single dimensional ones, and the new + // multi-dimensional ones. + rappor::RapporService* rappor_service = g_browser_process->rappor_service(); + const std::string rappor_metric = GetRapporMetric(permission, action); + if (!rappor_metric.empty()) + rappor::SampleDomainAndRegistryFromGURL( + rappor_service, rappor_metric, requesting_origin); + + // Add multi-dimensional RAPPOR reporting for safe-browsing users. + std::string permission_str = + PermissionUtil::GetPermissionString(permission); + if (!rappor_service || permission_str.empty()) + return; + + scoped_ptr sample = + rappor_service->CreateSample(rappor::SAFEBROWSING_RAPPOR_TYPE); + sample->SetStringField("Scheme", requesting_origin.scheme()); + sample->SetStringField("Host", requesting_origin.host()); + sample->SetStringField("Port", requesting_origin.port()); + sample->SetStringField("Domain", + rappor::GetDomainAndRegistrySampleFromGURL(requesting_origin)); + sample->SetFlagsField("Actions", static_cast(1) << action, + PermissionAction::PERMISSION_ACTION_NUM); + rappor_service->RecordSampleObj("Permissions.Action." + permission_str, + std::move(sample)); +} + +std::string PermissionTypeToString(PermissionType permission_type) { + switch (permission_type) { + case PermissionType::MIDI_SYSEX: + return "MidiSysex"; + case PermissionType::PUSH_MESSAGING: + return "PushMessaging"; + case PermissionType::NOTIFICATIONS: + return "Notifications"; + case PermissionType::GEOLOCATION: + return "Geolocation"; + case PermissionType::PROTECTED_MEDIA_IDENTIFIER: + return "ProtectedMediaIdentifier"; + case PermissionType::DURABLE_STORAGE: + return "DurableStorage"; + case PermissionType::MIDI: + return "Midi"; + case PermissionType::AUDIO_CAPTURE: + return "AudioRecording"; + case PermissionType::VIDEO_CAPTURE: + return "VideoRecording"; + case PermissionType::NUM: + break; + } + NOTREACHED(); + return std::string(); +} + +void RecordPermissionRequest(PermissionType permission, + const GURL& requesting_origin, + const GURL& embedding_origin, + Profile* profile) { + bool secure_origin = content::IsOriginSecure(requesting_origin); + if (permission == PermissionType::GEOLOCATION) { + rappor::SampleDomainAndRegistryFromGURL( + g_browser_process->rappor_service(), + "ContentSettings.PermissionRequested.Geolocation.Url", + requesting_origin); + } else if (permission == PermissionType::NOTIFICATIONS) { + rappor::SampleDomainAndRegistryFromGURL( + g_browser_process->rappor_service(), + "ContentSettings.PermissionRequested.Notifications.Url", + requesting_origin); + } + UMA_HISTOGRAM_ENUMERATION( + "ContentSettings.PermissionRequested", + static_cast(permission), + static_cast(PermissionType::NUM)); + if (secure_origin) { + UMA_HISTOGRAM_ENUMERATION( + "ContentSettings.PermissionRequested_SecureOrigin", + static_cast(permission), + static_cast(PermissionType::NUM)); + } else { + UMA_HISTOGRAM_ENUMERATION( + "ContentSettings.PermissionRequested_InsecureOrigin", + static_cast(permission), + static_cast(PermissionType::NUM)); + } + + // In order to gauge the compatibility risk of implementing an improved + // iframe permissions security model, we would like to know the ratio of + // same-origin to cross-origin permission requests. Our estimate of this + // ratio could be somewhat biased by repeated requests coming from a + // single frame, but we expect this to be insignificant. + if (requesting_origin.GetOrigin() != embedding_origin.GetOrigin()) { + content::PermissionManager* manager = profile->GetPermissionManager(); + if (!manager) + return; + content::PermissionStatus embedding_permission_status = + manager->GetPermissionStatus(permission, embedding_origin, + embedding_origin); + + base::HistogramBase* histogram = base::LinearHistogram::FactoryGet( + "Permissions.Requested.CrossOrigin_" + + PermissionTypeToString(permission), + 1, content::PERMISSION_STATUS_LAST, content::PERMISSION_STATUS_LAST + 1, + base::HistogramBase::kUmaTargetedHistogramFlag); + histogram->Add(embedding_permission_status); + } else { + UMA_HISTOGRAM_ENUMERATION( + "Permissions.Requested.SameOrigin", + static_cast(permission), + static_cast(PermissionType::NUM)); + } +} + +} // namespace + +// Make sure you update histograms.xml permission histogram_suffix if you +// add new permission +void PermissionUmaUtil::PermissionRequested(PermissionType permission, + const GURL& requesting_origin, + const GURL& embedding_origin, + Profile* profile) { + RecordPermissionRequest(permission, requesting_origin, embedding_origin, + profile); +} + +void PermissionUmaUtil::PermissionGranted(PermissionType permission, + const GURL& requesting_origin) { + RecordPermissionAction(permission, GRANTED, requesting_origin); +} + +void PermissionUmaUtil::PermissionDenied(PermissionType permission, + const GURL& requesting_origin) { + RecordPermissionAction(permission, DENIED, requesting_origin); +} + +void PermissionUmaUtil::PermissionDismissed(PermissionType permission, + const GURL& requesting_origin) { + RecordPermissionAction(permission, DISMISSED, requesting_origin); +} + +void PermissionUmaUtil::PermissionIgnored(PermissionType permission, + const GURL& requesting_origin) { + RecordPermissionAction(permission, IGNORED, requesting_origin); +} + +void PermissionUmaUtil::PermissionRevoked(PermissionType permission, + const GURL& revoked_origin) { + // TODO(tsergeant): Expand metrics definitions for revocation to include all + // permissions. + if (permission == PermissionType::NOTIFICATIONS || + permission == PermissionType::GEOLOCATION || + permission == PermissionType::AUDIO_CAPTURE || + permission == PermissionType::VIDEO_CAPTURE) { + RecordPermissionAction(permission, REVOKED, revoked_origin); + } +} diff --git a/src/chrome/browser/ui/browser_ui_prefs.cc b/src/chrome/browser/ui/browser_ui_prefs.cc new file mode 100644 index 0000000..a6b16d8 --- /dev/null +++ b/src/chrome/browser/ui/browser_ui_prefs.cc @@ -0,0 +1,146 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "chrome/browser/ui/browser_ui_prefs.h" + +#include "base/prefs/pref_registry_simple.h" +#include "base/prefs/pref_service.h" +#include "base/prefs/scoped_user_pref_update.h" +#include "build/build_config.h" +#include "chrome/browser/first_run/first_run.h" +#include "chrome/browser/profiles/profile.h" +#include "chrome/common/pref_names.h" +#include "components/pref_registry/pref_registry_syncable.h" +#include "components/translate/core/common/translate_pref_names.h" +#include "content/public/common/webrtc_ip_handling_policy.h" + +#if defined(OS_WIN) +#include "base/win/windows_version.h" +#endif + +namespace chrome { + +void RegisterBrowserPrefs(PrefRegistrySimple* registry) { + registry->RegisterIntegerPref(prefs::kOptionsWindowLastTabIndex, 0); + registry->RegisterBooleanPref(prefs::kAllowFileSelectionDialogs, true); + registry->RegisterIntegerPref(prefs::kShowFirstRunBubbleOption, + first_run::FIRST_RUN_BUBBLE_DONT_SHOW); +} + +void RegisterBrowserUserPrefs(user_prefs::PrefRegistrySyncable* registry) { + registry->RegisterBooleanPref( + prefs::kHomePageIsNewTabPage, + true, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterBooleanPref( + prefs::kShowHomeButton, + true, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterBooleanPref( + prefs::kDeleteBrowsingHistory, + true, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterBooleanPref( + prefs::kDeleteDownloadHistory, + true, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterBooleanPref( + prefs::kDeleteCache, + true, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterBooleanPref( + prefs::kDeleteCookies, + true, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterBooleanPref( + prefs::kDeletePasswords, + false, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterBooleanPref( + prefs::kDeleteFormData, + false, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterBooleanPref( + prefs::kDeleteHostedAppsData, + false, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterIntegerPref( + prefs::kDeleteTimePeriod, + 0, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterInt64Pref(prefs::kLastClearBrowsingDataTime, 0); + registry->RegisterIntegerPref(prefs::kModuleConflictBubbleShown, 0); + registry->RegisterBooleanPref(prefs::kCheckDefaultBrowser, true); + bool reset_check_default = false; +#if defined(OS_WIN) + reset_check_default = base::win::GetVersion() >= base::win::VERSION_WIN10; +#endif + registry->RegisterBooleanPref(prefs::kResetCheckDefaultBrowser, + reset_check_default); + registry->RegisterBooleanPref(prefs::kWebAppCreateOnDesktop, true); + registry->RegisterBooleanPref(prefs::kWebAppCreateInAppsMenu, true); + registry->RegisterBooleanPref(prefs::kWebAppCreateInQuickLaunchBar, true); + registry->RegisterBooleanPref( + prefs::kEnableTranslate, + true, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterStringPref(prefs::kCloudPrintEmail, std::string()); + registry->RegisterBooleanPref(prefs::kCloudPrintProxyEnabled, true); + registry->RegisterBooleanPref(prefs::kCloudPrintSubmitEnabled, true); + registry->RegisterBooleanPref(prefs::kDevToolsDisabled, false); + registry->RegisterDictionaryPref(prefs::kBrowserWindowPlacement); + registry->RegisterDictionaryPref(prefs::kBrowserWindowPlacementPopup); + registry->RegisterDictionaryPref(prefs::kAppWindowPlacement); + registry->RegisterBooleanPref(prefs::kImportAutofillFormData, true); + registry->RegisterBooleanPref(prefs::kImportBookmarks, true); + registry->RegisterBooleanPref(prefs::kImportHistory, true); + registry->RegisterBooleanPref(prefs::kImportHomepage, true); + registry->RegisterBooleanPref(prefs::kImportSavedPasswords, true); + registry->RegisterBooleanPref(prefs::kImportSearchEngine, true); + registry->RegisterBooleanPref( + prefs::kEnableDoNotTrack, + true, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); +#if defined(ENABLE_WEBRTC) + // TODO(guoweis): Remove next 2 options at M50. + registry->RegisterBooleanPref(prefs::kWebRTCMultipleRoutesEnabled, true); + registry->RegisterBooleanPref(prefs::kWebRTCNonProxiedUdpEnabled, true); + registry->RegisterStringPref(prefs::kWebRTCIPHandlingPolicy, + content::kWebRTCIPHandlingDefault); +#endif + + // Dictionaries to keep track of default tasks in the file browser. + registry->RegisterDictionaryPref( + prefs::kDefaultTasksByMimeType, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + registry->RegisterDictionaryPref( + prefs::kDefaultTasksBySuffix, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); + + // We need to register the type of these preferences in order to query + // them even though they're only typically controlled via policy. + registry->RegisterBooleanPref(prefs::kPluginsAllowOutdated, false); + registry->RegisterBooleanPref(prefs::kPluginsAlwaysAuthorize, false); + registry->RegisterBooleanPref(prefs::kClearPluginLSODataEnabled, true); + registry->RegisterBooleanPref(prefs::kHideWebStoreIcon, false); +#if defined(OS_MACOSX) + // This really belongs in platform code, but there's no good place to + // initialize it between the time when the AppController is created + // (where there's no profile) and the time the controller gets another + // crack at the start of the main event loop. By that time, + // StartupBrowserCreator has already created the browser window, and it's too + // late: we need the pref to be already initialized. Doing it here also saves + // us from having to hard-code pref registration in the several unit tests + // that use this preference. + registry->RegisterBooleanPref(prefs::kShowUpdatePromotionInfoBar, true); + registry->RegisterBooleanPref( + prefs::kHideFullscreenToolbar, + false, + user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); +#else + registry->RegisterBooleanPref(prefs::kFullscreenAllowed, true); +#endif +} + +} // namespace chrome diff --git a/src/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc b/src/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc new file mode 100644 index 0000000..6e5e9b7 --- /dev/null +++ b/src/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc @@ -0,0 +1,47 @@ +// Copyright 2013 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "chrome/browser/ui/startup/google_api_keys_infobar_delegate.h" + +#include "chrome/browser/infobars/infobar_service.h" +#include "chrome/grit/chromium_strings.h" +#include "components/infobars/core/infobar.h" +#include "content/public/browser/web_contents.h" +#include "google_apis/google_api_keys.h" +#include "grit/components_strings.h" +#include "ui/base/l10n/l10n_util.h" + + +// static +void GoogleApiKeysInfoBarDelegate::Create(InfoBarService* infobar_service) { + return; +} + +GoogleApiKeysInfoBarDelegate::GoogleApiKeysInfoBarDelegate() + : ConfirmInfoBarDelegate() { +} + +GoogleApiKeysInfoBarDelegate::~GoogleApiKeysInfoBarDelegate() { +} + +infobars::InfoBarDelegate::InfoBarIdentifier +GoogleApiKeysInfoBarDelegate::GetIdentifier() const { + return GOOGLE_API_KEYS_INFOBAR_DELEGATE; +} + +base::string16 GoogleApiKeysInfoBarDelegate::GetMessageText() const { + return l10n_util::GetStringUTF16(IDS_MISSING_GOOGLE_API_KEYS); +} + +int GoogleApiKeysInfoBarDelegate::GetButtons() const { + return BUTTON_NONE; +} + +base::string16 GoogleApiKeysInfoBarDelegate::GetLinkText() const { + return l10n_util::GetStringUTF16(IDS_LEARN_MORE); +} + +GURL GoogleApiKeysInfoBarDelegate::GetLinkURL() const { + return GURL(google_apis::kAPIKeysDevelopersHowToURL); +} diff --git a/src/chrome/browser/ui/startup/obsolete_system_infobar_delegate.cc b/src/chrome/browser/ui/startup/obsolete_system_infobar_delegate.cc new file mode 100644 index 0000000..aac8359 --- /dev/null +++ b/src/chrome/browser/ui/startup/obsolete_system_infobar_delegate.cc @@ -0,0 +1,50 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "chrome/browser/ui/startup/obsolete_system_infobar_delegate.h" + +#include "base/prefs/pref_service.h" +#include "chrome/browser/browser_process.h" +#include "chrome/browser/infobars/infobar_service.h" +#include "chrome/browser/obsolete_system/obsolete_system.h" +#include "chrome/common/pref_names.h" +#include "chrome/common/url_constants.h" +#include "chrome/grit/chromium_strings.h" +#include "components/infobars/core/infobar.h" +#include "content/public/browser/web_contents.h" +#include "grit/components_strings.h" +#include "ui/base/l10n/l10n_util.h" + +// static +void ObsoleteSystemInfoBarDelegate::Create(InfoBarService* infobar_service) { + return; +} + +ObsoleteSystemInfoBarDelegate::ObsoleteSystemInfoBarDelegate() + : ConfirmInfoBarDelegate() { +} + +ObsoleteSystemInfoBarDelegate::~ObsoleteSystemInfoBarDelegate() { +} + +infobars::InfoBarDelegate::InfoBarIdentifier +ObsoleteSystemInfoBarDelegate::GetIdentifier() const { + return OBSOLETE_SYSTEM_INFOBAR_DELEGATE; +} + +base::string16 ObsoleteSystemInfoBarDelegate::GetMessageText() const { + return ObsoleteSystem::LocalizedObsoleteString(); +} + +int ObsoleteSystemInfoBarDelegate::GetButtons() const { + return BUTTON_NONE; +} + +base::string16 ObsoleteSystemInfoBarDelegate::GetLinkText() const { + return l10n_util::GetStringUTF16(IDS_LEARN_MORE); +} + +GURL ObsoleteSystemInfoBarDelegate::GetLinkURL() const { + return GURL(ObsoleteSystem::GetLinkURL()); +} diff --git a/src/chrome/installer/mini_installer/chrome.release b/src/chrome/installer/mini_installer/chrome.release index 0086596..a226588 100644 --- a/src/chrome/installer/mini_installer/chrome.release +++ b/src/chrome/installer/mini_installer/chrome.release @@ -30,9 +30,9 @@ ffmpeg.dll: %(VersionDir)s\ kasko.dll: %(VersionDir)s\ icudt.dll: %(VersionDir)s\ icudtl.dat: %(VersionDir)s\ -libEGL.dll: %(VersionDir)s\ +SwiftShader\3.3.0.1\libEGL.dll: %(VersionDir)s\ libexif.dll: %(VersionDir)s\ -libGLESv2.dll: %(VersionDir)s\ +SwiftShader\3.3.0.1\libGLESv2.dll: %(VersionDir)s\ nacl64.exe: %(VersionDir)s\ nacl_irt_x86_32.nexe: %(VersionDir)s\ nacl_irt_x86_64.nexe: %(VersionDir)s\ diff --git a/src/components/drive/job_scheduler.cc b/src/components/drive/job_scheduler.cc new file mode 100644 index 0000000..4267869 --- /dev/null +++ b/src/components/drive/job_scheduler.cc @@ -0,0 +1,1196 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "components/drive/job_scheduler.h" + +#include +#include +#include + +#include "base/files/file_util.h" +#include "base/metrics/histogram.h" +#include "base/prefs/pref_service.h" +#include "base/rand_util.h" +#include "base/strings/string_number_conversions.h" +#include "base/strings/stringprintf.h" +#include "base/thread_task_runner_handle.h" +#include "components/drive/drive_pref_names.h" +#include "components/drive/event_logger.h" +#include "google_apis/drive/drive_api_parser.h" + +namespace drive { + +namespace { + +// All jobs are retried at maximum of kMaxRetryCount when they fail due to +// throttling or server error. The delay before retrying a job is shared among +// jobs. It doubles in length on each failure, upto 2^kMaxThrottleCount seconds. +// +// According to the API documentation, kMaxRetryCount should be the same as +// kMaxThrottleCount (https://developers.google.com/drive/handle-errors). +// But currently multiplied by 2 to ensure upload related jobs retried for a +// sufficient number of times. crbug.com/269918 +const int kMaxThrottleCount = 4; +const int kMaxRetryCount = 2 * kMaxThrottleCount; +const size_t kMaxBatchCount = 20; +const size_t kMaxBatchSize = 1024 * 1024 * 10; + +// GetDefaultValue returns a value constructed by the default constructor. +template struct DefaultValueCreator { + static T GetDefaultValue() { return T(); } +}; +template struct DefaultValueCreator { + static T GetDefaultValue() { return T(); } +}; + +// Helper of CreateErrorRunCallback implementation. +// Provides: +// - ResultType; the type of the Callback which should be returned by +// CreateErrorRunCallback. +// - Run(): a static function which takes the original |callback| and |error|, +// and runs the |callback|.Run() with the error code and default values +// for remaining arguments. +template struct CreateErrorRunCallbackHelper; + +// CreateErrorRunCallback with two arguments. +template +struct CreateErrorRunCallbackHelper { + static void Run( + const base::Callback& callback, + google_apis::DriveApiErrorCode error) { + callback.Run(error, DefaultValueCreator::GetDefaultValue()); + } +}; + +// Returns a callback with the tail parameter bound to its default value. +// In other words, returned_callback.Run(error) runs callback.Run(error, T()). +template +base::Callback +CreateErrorRunCallback(const base::Callback& callback) { + return base::Bind(&CreateErrorRunCallbackHelper::Run, callback); +} + +// Parameter struct for RunUploadNewFile. +struct UploadNewFileParams { + std::string parent_resource_id; + base::FilePath local_file_path; + std::string title; + std::string content_type; + UploadNewFileOptions options; + UploadCompletionCallback callback; + google_apis::ProgressCallback progress_callback; +}; + +// Helper function to work around the arity limitation of base::Bind. +google_apis::CancelCallback RunUploadNewFile( + DriveUploaderInterface* uploader, + const UploadNewFileParams& params) { + return uploader->UploadNewFile(params.parent_resource_id, + params.local_file_path, + params.title, + params.content_type, + params.options, + params.callback, + params.progress_callback); +} + +// Parameter struct for RunUploadExistingFile. +struct UploadExistingFileParams { + std::string resource_id; + base::FilePath local_file_path; + std::string content_type; + UploadExistingFileOptions options; + std::string etag; + UploadCompletionCallback callback; + google_apis::ProgressCallback progress_callback; +}; + +// Helper function to work around the arity limitation of base::Bind. +google_apis::CancelCallback RunUploadExistingFile( + DriveUploaderInterface* uploader, + const UploadExistingFileParams& params) { + return uploader->UploadExistingFile(params.resource_id, + params.local_file_path, + params.content_type, + params.options, + params.callback, + params.progress_callback); +} + +// Parameter struct for RunResumeUploadFile. +struct ResumeUploadFileParams { + GURL upload_location; + base::FilePath local_file_path; + std::string content_type; + UploadCompletionCallback callback; + google_apis::ProgressCallback progress_callback; +}; + +// Helper function to adjust the return type. +google_apis::CancelCallback RunResumeUploadFile( + DriveUploaderInterface* uploader, + const ResumeUploadFileParams& params) { + return uploader->ResumeUploadFile(params.upload_location, + params.local_file_path, + params.content_type, + params.callback, + params.progress_callback); +} + +// Collects information about sizes of files copied or moved from or to Drive +// Otherwise does nothing. Temporary for crbug.com/229650. +void CollectCopyHistogramSample(const std::string& histogram_name, + int64_t size) { + base::HistogramBase* const counter = + base::Histogram::FactoryGet(histogram_name, + 1, + 1024 * 1024 /* 1 GB */, + 50, + base::Histogram::kUmaTargetedHistogramFlag); + counter->Add(size / 1024); +} + +} // namespace + +// Metadata jobs are cheap, so we run them concurrently. File jobs run serially. +const int JobScheduler::kMaxJobCount[] = { + 5, // METADATA_QUEUE + 1, // FILE_QUEUE +}; + +JobScheduler::JobEntry::JobEntry(JobType type) + : job_info(type), + context(ClientContext(USER_INITIATED)), + retry_count(0) { +} + +JobScheduler::JobEntry::~JobEntry() { + DCHECK(thread_checker_.CalledOnValidThread()); +} + +struct JobScheduler::ResumeUploadParams { + base::FilePath drive_file_path; + base::FilePath local_file_path; + std::string content_type; +}; + +JobScheduler::JobScheduler(PrefService* pref_service, + EventLogger* logger, + DriveServiceInterface* drive_service, + base::SequencedTaskRunner* blocking_task_runner) + : throttle_count_(0), + wait_until_(base::Time::Now()), + disable_throttling_(false), + logger_(logger), + drive_service_(drive_service), + blocking_task_runner_(blocking_task_runner), + uploader_(new DriveUploader(drive_service, blocking_task_runner)), + pref_service_(pref_service), + weak_ptr_factory_(this) { + for (int i = 0; i < NUM_QUEUES; ++i) + queue_[i].reset(new JobQueue(kMaxJobCount[i], NUM_CONTEXT_TYPES, + kMaxBatchCount, kMaxBatchSize)); + + net::NetworkChangeNotifier::AddConnectionTypeObserver(this); +} + +JobScheduler::~JobScheduler() { + DCHECK(thread_checker_.CalledOnValidThread()); + + size_t num_queued_jobs = 0; + for (int i = 0; i < NUM_QUEUES; ++i) + num_queued_jobs += queue_[i]->GetNumberOfJobs(); + DCHECK_EQ(num_queued_jobs, job_map_.size()); + + net::NetworkChangeNotifier::RemoveConnectionTypeObserver(this); +} + +std::vector JobScheduler::GetJobInfoList() { + std::vector job_info_list; + for (JobIDMap::iterator iter(&job_map_); !iter.IsAtEnd(); iter.Advance()) + job_info_list.push_back(iter.GetCurrentValue()->job_info); + return job_info_list; +} + +void JobScheduler::AddObserver(JobListObserver* observer) { + DCHECK(thread_checker_.CalledOnValidThread()); + observer_list_.AddObserver(observer); +} + +void JobScheduler::RemoveObserver(JobListObserver* observer) { + DCHECK(thread_checker_.CalledOnValidThread()); + observer_list_.RemoveObserver(observer); +} + +void JobScheduler::CancelJob(JobID job_id) { + DCHECK(thread_checker_.CalledOnValidThread()); + + JobEntry* job = job_map_.Lookup(job_id); + if (job) { + if (job->job_info.state == STATE_RUNNING) { + // If the job is running an HTTP request, cancel it via |cancel_callback| + // returned from the request, and wait for termination in the normal + // callback handler, OnJobDone. + if (!job->cancel_callback.is_null()) + job->cancel_callback.Run(); + } else { + AbortNotRunningJob(job, google_apis::DRIVE_CANCELLED); + } + } +} + +void JobScheduler::CancelAllJobs() { + DCHECK(thread_checker_.CalledOnValidThread()); + + // CancelJob may remove the entry from |job_map_|. That's OK. IDMap supports + // removable during iteration. + for (JobIDMap::iterator iter(&job_map_); !iter.IsAtEnd(); iter.Advance()) + CancelJob(iter.GetCurrentKey()); +} + +void JobScheduler::GetAboutResource( + const google_apis::AboutResourceCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_GET_ABOUT_RESOURCE); + new_job->task = base::Bind( + &DriveServiceInterface::GetAboutResource, + base::Unretained(drive_service_), + base::Bind(&JobScheduler::OnGetAboutResourceJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::GetAppList(const google_apis::AppListCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_GET_APP_LIST); + new_job->task = base::Bind( + &DriveServiceInterface::GetAppList, + base::Unretained(drive_service_), + base::Bind(&JobScheduler::OnGetAppListJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::GetAllFileList( + const google_apis::FileListCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_GET_ALL_RESOURCE_LIST); + new_job->task = base::Bind( + &DriveServiceInterface::GetAllFileList, + base::Unretained(drive_service_), + base::Bind(&JobScheduler::OnGetFileListJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::GetFileListInDirectory( + const std::string& directory_resource_id, + const google_apis::FileListCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob( + TYPE_GET_RESOURCE_LIST_IN_DIRECTORY); + new_job->task = base::Bind( + &DriveServiceInterface::GetFileListInDirectory, + base::Unretained(drive_service_), + directory_resource_id, + base::Bind(&JobScheduler::OnGetFileListJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::Search(const std::string& search_query, + const google_apis::FileListCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_SEARCH); + new_job->task = base::Bind( + &DriveServiceInterface::Search, + base::Unretained(drive_service_), + search_query, + base::Bind(&JobScheduler::OnGetFileListJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::GetChangeList( + int64_t start_changestamp, + const google_apis::ChangeListCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_GET_CHANGE_LIST); + new_job->task = base::Bind( + &DriveServiceInterface::GetChangeList, + base::Unretained(drive_service_), + start_changestamp, + base::Bind(&JobScheduler::OnGetChangeListJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::GetRemainingChangeList( + const GURL& next_link, + const google_apis::ChangeListCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_GET_REMAINING_CHANGE_LIST); + new_job->task = base::Bind( + &DriveServiceInterface::GetRemainingChangeList, + base::Unretained(drive_service_), + next_link, + base::Bind(&JobScheduler::OnGetChangeListJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::GetRemainingFileList( + const GURL& next_link, + const google_apis::FileListCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_GET_REMAINING_FILE_LIST); + new_job->task = base::Bind( + &DriveServiceInterface::GetRemainingFileList, + base::Unretained(drive_service_), + next_link, + base::Bind(&JobScheduler::OnGetFileListJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::GetFileResource( + const std::string& resource_id, + const ClientContext& context, + const google_apis::FileResourceCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_GET_RESOURCE_ENTRY); + new_job->context = context; + new_job->task = base::Bind( + &DriveServiceInterface::GetFileResource, + base::Unretained(drive_service_), + resource_id, + base::Bind(&JobScheduler::OnGetFileResourceJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::GetShareUrl( + const std::string& resource_id, + const GURL& embed_origin, + const ClientContext& context, + const google_apis::GetShareUrlCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_GET_SHARE_URL); + new_job->context = context; + new_job->task = base::Bind( + &DriveServiceInterface::GetShareUrl, + base::Unretained(drive_service_), + resource_id, + embed_origin, + base::Bind(&JobScheduler::OnGetShareUrlJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::TrashResource( + const std::string& resource_id, + const ClientContext& context, + const google_apis::EntryActionCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_TRASH_RESOURCE); + new_job->context = context; + new_job->task = base::Bind( + &DriveServiceInterface::TrashResource, + base::Unretained(drive_service_), + resource_id, + base::Bind(&JobScheduler::OnEntryActionJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = callback; + StartJob(new_job); +} + +void JobScheduler::CopyResource( + const std::string& resource_id, + const std::string& parent_resource_id, + const std::string& new_title, + const base::Time& last_modified, + const google_apis::FileResourceCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_COPY_RESOURCE); + new_job->task = base::Bind( + &DriveServiceInterface::CopyResource, + base::Unretained(drive_service_), + resource_id, + parent_resource_id, + new_title, + last_modified, + base::Bind(&JobScheduler::OnGetFileResourceJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::UpdateResource( + const std::string& resource_id, + const std::string& parent_resource_id, + const std::string& new_title, + const base::Time& last_modified, + const base::Time& last_viewed_by_me, + const google_apis::drive::Properties& properties, + const ClientContext& context, + const google_apis::FileResourceCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_UPDATE_RESOURCE); + new_job->context = context; + new_job->task = base::Bind(&DriveServiceInterface::UpdateResource, + base::Unretained(drive_service_), resource_id, + parent_resource_id, new_title, last_modified, + last_viewed_by_me, properties, + base::Bind(&JobScheduler::OnGetFileResourceJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::AddResourceToDirectory( + const std::string& parent_resource_id, + const std::string& resource_id, + const google_apis::EntryActionCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_ADD_RESOURCE_TO_DIRECTORY); + new_job->task = base::Bind( + &DriveServiceInterface::AddResourceToDirectory, + base::Unretained(drive_service_), + parent_resource_id, + resource_id, + base::Bind(&JobScheduler::OnEntryActionJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = callback; + StartJob(new_job); +} + +void JobScheduler::RemoveResourceFromDirectory( + const std::string& parent_resource_id, + const std::string& resource_id, + const ClientContext& context, + const google_apis::EntryActionCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + + JobEntry* new_job = CreateNewJob(TYPE_REMOVE_RESOURCE_FROM_DIRECTORY); + new_job->context = context; + new_job->task = base::Bind( + &DriveServiceInterface::RemoveResourceFromDirectory, + base::Unretained(drive_service_), + parent_resource_id, + resource_id, + base::Bind(&JobScheduler::OnEntryActionJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = callback; + StartJob(new_job); +} + +void JobScheduler::AddNewDirectory( + const std::string& parent_resource_id, + const std::string& directory_title, + const AddNewDirectoryOptions& options, + const ClientContext& context, + const google_apis::FileResourceCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + + JobEntry* new_job = CreateNewJob(TYPE_ADD_NEW_DIRECTORY); + new_job->context = context; + new_job->task = base::Bind( + &DriveServiceInterface::AddNewDirectory, + base::Unretained(drive_service_), + parent_resource_id, + directory_title, + options, + base::Bind(&JobScheduler::OnGetFileResourceJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +JobID JobScheduler::DownloadFile( + const base::FilePath& virtual_path, + int64_t expected_file_size, + const base::FilePath& local_cache_path, + const std::string& resource_id, + const ClientContext& context, + const google_apis::DownloadActionCallback& download_action_callback, + const google_apis::GetContentCallback& get_content_callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + + // Temporary histogram for crbug.com/229650. + CollectCopyHistogramSample("Drive.DownloadFromDriveFileSize", + expected_file_size); + + JobEntry* new_job = CreateNewJob(TYPE_DOWNLOAD_FILE); + new_job->job_info.file_path = virtual_path; + new_job->job_info.num_total_bytes = expected_file_size; + new_job->context = context; + new_job->task = base::Bind( + &DriveServiceInterface::DownloadFile, + base::Unretained(drive_service_), + local_cache_path, + resource_id, + base::Bind(&JobScheduler::OnDownloadActionJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + download_action_callback), + get_content_callback, + base::Bind(&JobScheduler::UpdateProgress, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id)); + new_job->abort_callback = CreateErrorRunCallback(download_action_callback); + StartJob(new_job); + return new_job->job_info.job_id; +} + +void JobScheduler::UploadNewFile( + const std::string& parent_resource_id, + int64_t expected_file_size, + const base::FilePath& drive_file_path, + const base::FilePath& local_file_path, + const std::string& title, + const std::string& content_type, + const UploadNewFileOptions& options, + const ClientContext& context, + const google_apis::FileResourceCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + + JobEntry* new_job = CreateNewJob(TYPE_UPLOAD_NEW_FILE); + new_job->job_info.file_path = drive_file_path; + new_job->job_info.num_total_bytes = expected_file_size; + new_job->context = context; + + // Temporary histogram for crbug.com/229650. + CollectCopyHistogramSample("Drive.UploadToDriveFileSize", expected_file_size); + + UploadNewFileParams params; + params.parent_resource_id = parent_resource_id; + params.local_file_path = local_file_path; + params.title = title; + params.content_type = content_type; + params.options = options; + + ResumeUploadParams resume_params; + resume_params.local_file_path = params.local_file_path; + resume_params.content_type = params.content_type; + + params.callback = base::Bind(&JobScheduler::OnUploadCompletionJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + resume_params, + callback); + params.progress_callback = base::Bind(&JobScheduler::UpdateProgress, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id); + new_job->task = base::Bind(&RunUploadNewFile, uploader_.get(), params); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::UploadExistingFile( + const std::string& resource_id, + int64_t expected_file_size, + const base::FilePath& drive_file_path, + const base::FilePath& local_file_path, + const std::string& content_type, + const UploadExistingFileOptions& options, + const ClientContext& context, + const google_apis::FileResourceCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + + JobEntry* new_job = CreateNewJob(TYPE_UPLOAD_EXISTING_FILE); + new_job->job_info.file_path = drive_file_path; + new_job->job_info.num_total_bytes = expected_file_size; + new_job->context = context; + + // Temporary histogram for crbug.com/229650. + CollectCopyHistogramSample("Drive.UploadToDriveFileSize", expected_file_size); + + UploadExistingFileParams params; + params.resource_id = resource_id; + params.local_file_path = local_file_path; + params.content_type = content_type; + params.options = options; + + ResumeUploadParams resume_params; + resume_params.local_file_path = params.local_file_path; + resume_params.content_type = params.content_type; + + params.callback = base::Bind(&JobScheduler::OnUploadCompletionJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + resume_params, + callback); + params.progress_callback = base::Bind(&JobScheduler::UpdateProgress, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id); + new_job->task = base::Bind(&RunUploadExistingFile, uploader_.get(), params); + new_job->abort_callback = CreateErrorRunCallback(callback); + StartJob(new_job); +} + +void JobScheduler::AddPermission( + const std::string& resource_id, + const std::string& email, + google_apis::drive::PermissionRole role, + const google_apis::EntryActionCallback& callback) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + JobEntry* new_job = CreateNewJob(TYPE_ADD_PERMISSION); + new_job->task = base::Bind(&DriveServiceInterface::AddPermission, + base::Unretained(drive_service_), + resource_id, + email, + role, + base::Bind(&JobScheduler::OnEntryActionJobDone, + weak_ptr_factory_.GetWeakPtr(), + new_job->job_info.job_id, + callback)); + new_job->abort_callback = callback; + StartJob(new_job); +} + +JobScheduler::JobEntry* JobScheduler::CreateNewJob(JobType type) { + JobEntry* job = new JobEntry(type); + job->job_info.job_id = job_map_.Add(job); // Takes the ownership of |job|. + return job; +} + +void JobScheduler::StartJob(JobEntry* job) { + DCHECK(!job->task.is_null()); + + QueueJob(job->job_info.job_id); + NotifyJobAdded(job->job_info); + DoJobLoop(GetJobQueueType(job->job_info.job_type)); +} + +void JobScheduler::QueueJob(JobID job_id) { + DCHECK(thread_checker_.CalledOnValidThread()); + + JobEntry* job_entry = job_map_.Lookup(job_id); + DCHECK(job_entry); + const JobInfo& job_info = job_entry->job_info; + + const QueueType queue_type = GetJobQueueType(job_info.job_type); + const bool batchable = job_info.job_type == TYPE_UPLOAD_EXISTING_FILE || + job_info.job_type == TYPE_UPLOAD_NEW_FILE; + queue_[queue_type]->Push(job_id, job_entry->context.type, batchable, + job_info.num_total_bytes); + + // Temporary histogram for crbug.com/229650. + if (job_info.job_type == TYPE_DOWNLOAD_FILE || + job_info.job_type == TYPE_UPLOAD_EXISTING_FILE || + job_info.job_type == TYPE_UPLOAD_NEW_FILE) { + std::vector jobs_with_the_same_priority; + queue_[queue_type]->GetQueuedJobs(job_entry->context.type, + &jobs_with_the_same_priority); + DCHECK(!jobs_with_the_same_priority.empty()); + + const size_t blocking_jobs_count = jobs_with_the_same_priority.size() - 1; + UMA_HISTOGRAM_COUNTS_10000("Drive.TransferBlockedOnJobs", + blocking_jobs_count); + } + + const std::string retry_prefix = job_entry->retry_count > 0 ? + base::StringPrintf(" (retry %d)", job_entry->retry_count) : ""; + logger_->Log(logging::LOG_INFO, + "Job queued%s: %s - %s", + retry_prefix.c_str(), + job_info.ToString().c_str(), + GetQueueInfo(queue_type).c_str()); +} + +void JobScheduler::DoJobLoop(QueueType queue_type) { + DCHECK(thread_checker_.CalledOnValidThread()); + + const int accepted_priority = GetCurrentAcceptedPriority(queue_type); + + // Abort all USER_INITAITED jobs when not accepted. + if (accepted_priority < USER_INITIATED) { + std::vector jobs; + queue_[queue_type]->GetQueuedJobs(USER_INITIATED, &jobs); + for (size_t i = 0; i < jobs.size(); ++i) { + JobEntry* job = job_map_.Lookup(jobs[i]); + DCHECK(job); + AbortNotRunningJob(job, google_apis::DRIVE_NO_CONNECTION); + } + } + + // Wait when throttled. + const base::Time now = base::Time::Now(); + if (now < wait_until_) { + base::ThreadTaskRunnerHandle::Get()->PostDelayedTask( + FROM_HERE, + base::Bind(&JobScheduler::DoJobLoop, + weak_ptr_factory_.GetWeakPtr(), + queue_type), + wait_until_ - now); + return; + } + + // Run the job with the highest priority in the queue. + std::vector job_ids; + queue_[queue_type]->PopForRun(accepted_priority, &job_ids); + if (job_ids.empty()) + return; + + if (job_ids.size() > 1) + uploader_->StartBatchProcessing(); + + for (JobID job_id : job_ids) { + JobEntry* entry = job_map_.Lookup(job_id); + DCHECK(entry); + + JobInfo* job_info = &entry->job_info; + job_info->state = STATE_RUNNING; + job_info->start_time = now; + NotifyJobUpdated(*job_info); + + entry->cancel_callback = entry->task.Run(); + logger_->Log(logging::LOG_INFO, "Job started: %s - %s", + job_info->ToString().c_str(), + GetQueueInfo(queue_type).c_str()); + } + + if (job_ids.size() > 1) + uploader_->StopBatchProcessing(); + + UpdateWait(); +} + +int JobScheduler::GetCurrentAcceptedPriority(QueueType queue_type) { + DCHECK(thread_checker_.CalledOnValidThread()); + + const int kNoJobShouldRun = -1; + + // Should stop if Drive was disabled while running the fetch loop. + if (pref_service_->GetBoolean(prefs::kDisableDrive)) + return kNoJobShouldRun; + + // Should stop if the network is not online. + if (net::NetworkChangeNotifier::IsOffline()) + return kNoJobShouldRun; + + // For the file queue, if it is on cellular network, only user initiated + // operations are allowed to start. + if (queue_type == FILE_QUEUE && + pref_service_->GetBoolean(prefs::kDisableDriveOverCellular) && + net::NetworkChangeNotifier::IsConnectionCellular( + net::NetworkChangeNotifier::GetConnectionType())) + return USER_INITIATED; + + // Otherwise, every operations including background tasks are allowed. + return BACKGROUND; +} + +void JobScheduler::UpdateWait() { + DCHECK(thread_checker_.CalledOnValidThread()); + + if (disable_throttling_ || throttle_count_ == 0) + return; + + // Exponential backoff: https://developers.google.com/drive/handle-errors. + base::TimeDelta delay = + base::TimeDelta::FromSeconds(static_cast(1) + << (throttle_count_ - 1)) + + base::TimeDelta::FromMilliseconds(base::RandInt(0, 1000)); + VLOG(1) << "Throttling for " << delay.InMillisecondsF(); + + wait_until_ = std::max(wait_until_, base::Time::Now() + delay); +} + +bool JobScheduler::OnJobDone(JobID job_id, + google_apis::DriveApiErrorCode error) { + DCHECK(thread_checker_.CalledOnValidThread()); + + JobEntry* job_entry = job_map_.Lookup(job_id); + DCHECK(job_entry); + JobInfo* job_info = &job_entry->job_info; + QueueType queue_type = GetJobQueueType(job_info->job_type); + queue_[queue_type]->MarkFinished(job_id); + + const base::TimeDelta elapsed = base::Time::Now() - job_info->start_time; + bool success = (GDataToFileError(error) == FILE_ERROR_OK); + logger_->Log(success ? logging::LOG_INFO : logging::LOG_WARNING, + "Job done: %s => %s (elapsed time: %sms) - %s", + job_info->ToString().c_str(), + DriveApiErrorCodeToString(error).c_str(), + base::Int64ToString(elapsed.InMilliseconds()).c_str(), + GetQueueInfo(queue_type).c_str()); + + // Retry, depending on the error. + const bool is_server_error = + error == google_apis::HTTP_SERVICE_UNAVAILABLE || + error == google_apis::HTTP_INTERNAL_SERVER_ERROR; + if (is_server_error) { + if (throttle_count_ < kMaxThrottleCount) + ++throttle_count_; + UpdateWait(); + } else { + throttle_count_ = 0; + } + + const bool should_retry = + is_server_error && job_entry->retry_count < kMaxRetryCount; + if (should_retry) { + job_entry->cancel_callback.Reset(); + job_info->state = STATE_RETRY; + NotifyJobUpdated(*job_info); + + ++job_entry->retry_count; + + // Requeue the job. + QueueJob(job_id); + } else { + NotifyJobDone(*job_info, error); + // The job has finished, no retry will happen in the scheduler. Now we can + // remove the job info from the map. + job_map_.Remove(job_id); + } + + // Post a task to continue the job loop. This allows us to finish handling + // the current job before starting the next one. + base::ThreadTaskRunnerHandle::Get()->PostTask( + FROM_HERE, + base::Bind(&JobScheduler::DoJobLoop, + weak_ptr_factory_.GetWeakPtr(), + queue_type)); + return !should_retry; +} + +void JobScheduler::OnGetFileListJobDone( + JobID job_id, + const google_apis::FileListCallback& callback, + google_apis::DriveApiErrorCode error, + scoped_ptr file_list) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + if (OnJobDone(job_id, error)) + callback.Run(error, std::move(file_list)); +} + +void JobScheduler::OnGetChangeListJobDone( + JobID job_id, + const google_apis::ChangeListCallback& callback, + google_apis::DriveApiErrorCode error, + scoped_ptr change_list) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + if (OnJobDone(job_id, error)) + callback.Run(error, std::move(change_list)); +} + +void JobScheduler::OnGetFileResourceJobDone( + JobID job_id, + const google_apis::FileResourceCallback& callback, + google_apis::DriveApiErrorCode error, + scoped_ptr entry) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + if (OnJobDone(job_id, error)) + callback.Run(error, std::move(entry)); +} + +void JobScheduler::OnGetAboutResourceJobDone( + JobID job_id, + const google_apis::AboutResourceCallback& callback, + google_apis::DriveApiErrorCode error, + scoped_ptr about_resource) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + if (OnJobDone(job_id, error)) + callback.Run(error, std::move(about_resource)); +} + +void JobScheduler::OnGetShareUrlJobDone( + JobID job_id, + const google_apis::GetShareUrlCallback& callback, + google_apis::DriveApiErrorCode error, + const GURL& share_url) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + if (OnJobDone(job_id, error)) + callback.Run(error, share_url); +} + +void JobScheduler::OnGetAppListJobDone( + JobID job_id, + const google_apis::AppListCallback& callback, + google_apis::DriveApiErrorCode error, + scoped_ptr app_list) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + if (OnJobDone(job_id, error)) + callback.Run(error, std::move(app_list)); +} + +void JobScheduler::OnEntryActionJobDone( + JobID job_id, + const google_apis::EntryActionCallback& callback, + google_apis::DriveApiErrorCode error) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + if (OnJobDone(job_id, error)) + callback.Run(error); +} + +void JobScheduler::OnDownloadActionJobDone( + JobID job_id, + const google_apis::DownloadActionCallback& callback, + google_apis::DriveApiErrorCode error, + const base::FilePath& temp_file) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + if (OnJobDone(job_id, error)) + callback.Run(error, temp_file); +} + +void JobScheduler::OnUploadCompletionJobDone( + JobID job_id, + const ResumeUploadParams& resume_params, + const google_apis::FileResourceCallback& callback, + google_apis::DriveApiErrorCode error, + const GURL& upload_location, + scoped_ptr entry) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!callback.is_null()); + + if (!upload_location.is_empty()) { + // If upload_location is available, update the task to resume the + // upload process from the terminated point. + // When we need to retry, the error code should be HTTP_SERVICE_UNAVAILABLE + // so OnJobDone called below will be in charge to re-queue the job. + JobEntry* job_entry = job_map_.Lookup(job_id); + DCHECK(job_entry); + + ResumeUploadFileParams params; + params.upload_location = upload_location; + params.local_file_path = resume_params.local_file_path; + params.content_type = resume_params.content_type; + params.callback = base::Bind(&JobScheduler::OnResumeUploadFileDone, + weak_ptr_factory_.GetWeakPtr(), + job_id, + job_entry->task, + callback); + params.progress_callback = base::Bind(&JobScheduler::UpdateProgress, + weak_ptr_factory_.GetWeakPtr(), + job_id); + job_entry->task = base::Bind(&RunResumeUploadFile, uploader_.get(), params); + } + + if (OnJobDone(job_id, error)) + callback.Run(error, std::move(entry)); +} + +void JobScheduler::OnResumeUploadFileDone( + JobID job_id, + const base::Callback& original_task, + const google_apis::FileResourceCallback& callback, + google_apis::DriveApiErrorCode error, + const GURL& upload_location, + scoped_ptr entry) { + DCHECK(thread_checker_.CalledOnValidThread()); + DCHECK(!original_task.is_null()); + DCHECK(!callback.is_null()); + + if (upload_location.is_empty()) { + // If upload_location is not available, we should discard it and stop trying + // to resume. Restore the original task. + JobEntry* job_entry = job_map_.Lookup(job_id); + DCHECK(job_entry); + job_entry->task = original_task; + } + + if (OnJobDone(job_id, error)) + callback.Run(error, std::move(entry)); +} + +void JobScheduler::UpdateProgress(JobID job_id, + int64_t progress, + int64_t total) { + JobEntry* job_entry = job_map_.Lookup(job_id); + DCHECK(job_entry); + + job_entry->job_info.num_completed_bytes = progress; + if (total != -1) + job_entry->job_info.num_total_bytes = total; + NotifyJobUpdated(job_entry->job_info); +} + +void JobScheduler::OnConnectionTypeChanged( + net::NetworkChangeNotifier::ConnectionType type) { + DCHECK(thread_checker_.CalledOnValidThread()); + + // Resume the job loop. + // Note that we don't need to check the network connection status as it will + // be checked in GetCurrentAcceptedPriority(). + for (int i = METADATA_QUEUE; i < NUM_QUEUES; ++i) + DoJobLoop(static_cast(i)); +} + +JobScheduler::QueueType JobScheduler::GetJobQueueType(JobType type) { + switch (type) { + case TYPE_GET_ABOUT_RESOURCE: + case TYPE_GET_APP_LIST: + case TYPE_GET_ALL_RESOURCE_LIST: + case TYPE_GET_RESOURCE_LIST_IN_DIRECTORY: + case TYPE_SEARCH: + case TYPE_GET_CHANGE_LIST: + case TYPE_GET_REMAINING_CHANGE_LIST: + case TYPE_GET_REMAINING_FILE_LIST: + case TYPE_GET_RESOURCE_ENTRY: + case TYPE_GET_SHARE_URL: + case TYPE_TRASH_RESOURCE: + case TYPE_COPY_RESOURCE: + case TYPE_UPDATE_RESOURCE: + case TYPE_ADD_RESOURCE_TO_DIRECTORY: + case TYPE_REMOVE_RESOURCE_FROM_DIRECTORY: + case TYPE_ADD_NEW_DIRECTORY: + case TYPE_ADD_PERMISSION: + return METADATA_QUEUE; + + case TYPE_DOWNLOAD_FILE: + case TYPE_UPLOAD_NEW_FILE: + case TYPE_UPLOAD_EXISTING_FILE: + return FILE_QUEUE; + } + NOTREACHED(); + return FILE_QUEUE; +} + +void JobScheduler::AbortNotRunningJob(JobEntry* job, + google_apis::DriveApiErrorCode error) { + DCHECK(thread_checker_.CalledOnValidThread()); + + const base::TimeDelta elapsed = base::Time::Now() - job->job_info.start_time; + const QueueType queue_type = GetJobQueueType(job->job_info.job_type); + logger_->Log(logging::LOG_INFO, + "Job aborted: %s => %s (elapsed time: %sms) - %s", + job->job_info.ToString().c_str(), + DriveApiErrorCodeToString(error).c_str(), + base::Int64ToString(elapsed.InMilliseconds()).c_str(), + GetQueueInfo(queue_type).c_str()); + + base::Callback callback = + job->abort_callback; + queue_[GetJobQueueType(job->job_info.job_type)]->Remove(job->job_info.job_id); + NotifyJobDone(job->job_info, error); + job_map_.Remove(job->job_info.job_id); + base::ThreadTaskRunnerHandle::Get()->PostTask(FROM_HERE, + base::Bind(callback, error)); +} + +void JobScheduler::NotifyJobAdded(const JobInfo& job_info) { + DCHECK(thread_checker_.CalledOnValidThread()); + FOR_EACH_OBSERVER(JobListObserver, observer_list_, OnJobAdded(job_info)); +} + +void JobScheduler::NotifyJobDone(const JobInfo& job_info, + google_apis::DriveApiErrorCode error) { + DCHECK(thread_checker_.CalledOnValidThread()); + FOR_EACH_OBSERVER(JobListObserver, observer_list_, + OnJobDone(job_info, GDataToFileError(error))); +} + +void JobScheduler::NotifyJobUpdated(const JobInfo& job_info) { + DCHECK(thread_checker_.CalledOnValidThread()); + FOR_EACH_OBSERVER(JobListObserver, observer_list_, OnJobUpdated(job_info)); +} + +std::string JobScheduler::GetQueueInfo(QueueType type) const { + return QueueTypeToString(type) + " " + queue_[type]->ToString(); +} + +// static +std::string JobScheduler::QueueTypeToString(QueueType type) { + switch (type) { + case METADATA_QUEUE: + return "METADATA_QUEUE"; + case FILE_QUEUE: + return "FILE_QUEUE"; + case NUM_QUEUES: + break; // This value is just a sentinel. Should never be used. + } + NOTREACHED(); + return ""; +} + +} // namespace drive diff --git a/src/third_party/ffmpeg/ffmpeg_generated.gni b/src/third_party/ffmpeg/ffmpeg_generated.gni new file mode 100644 index 0000000..52caa22 --- /dev/null +++ b/src/third_party/ffmpeg/ffmpeg_generated.gni @@ -0,0 +1,678 @@ +# Copyright 2016 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# NOTE: this file is autogenerated by ffmpeg/chromium/scripts/generate_gyp.py + +import("//build/config/arm.gni") +import("ffmpeg_options.gni") + +# Declare empty versions of each variable for easier +=ing later. +ffmpeg_c_sources = [] +ffmpeg_gas_sources = [] +ffmpeg_yasm_sources = [] + +if ((is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm64" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "mips64el" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "mips64el" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "mipsel" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x86" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromiumOS") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chromium")) { + ffmpeg_c_sources += [ + "libavcodec/allcodecs.c", + "libavcodec/autorename_libavcodec_utils.c", + "libavcodec/avdct.c", + "libavcodec/avfft.c", + "libavcodec/avpacket.c", + "libavcodec/avpicture.c", + "libavcodec/bitstream.c", + "libavcodec/bitstream_filter.c", + "libavcodec/codec_desc.c", + "libavcodec/d3d11va.c", + "libavcodec/dirac.c", + "libavcodec/dv_profile.c", + "libavcodec/fft_fixed.c", + "libavcodec/fft_fixed_32.c", + "libavcodec/fft_float.c", + "libavcodec/fft_init_table.c", + "libavcodec/golomb.c", + "libavcodec/imgconvert.c", + "libavcodec/mathtables.c", + "libavcodec/mdct_fixed.c", + "libavcodec/mdct_fixed_32.c", + "libavcodec/mdct_float.c", + "libavcodec/mpeg12data.c", + "libavcodec/mpeg4audio.c", + "libavcodec/mpegaudiodata.c", + "libavcodec/options.c", + "libavcodec/opus.c", + "libavcodec/opus_parser.c", + "libavcodec/parser.c", + "libavcodec/pcm.c", + "libavcodec/profiles.c", + "libavcodec/pthread.c", + "libavcodec/pthread_frame.c", + "libavcodec/pthread_slice.c", + "libavcodec/qsv_api.c", + "libavcodec/raw.c", + "libavcodec/rdft.c", + "libavcodec/vorbis.c", + "libavcodec/vorbis_data.c", + "libavcodec/vorbis_parser.c", + "libavcodec/vorbisdec.c", + "libavcodec/vorbisdsp.c", + "libavcodec/xiph.c", + "libavformat/allformats.c", + "libavformat/autorename_libavformat_options.c", + "libavformat/autorename_libavformat_pcm.c", + "libavformat/autorename_libavformat_utils.c", + "libavformat/avio.c", + "libavformat/aviobuf.c", + "libavformat/cutils.c", + "libavformat/dump.c", + "libavformat/flac_picture.c", + "libavformat/format.c", + "libavformat/id3v1.c", + "libavformat/id3v2.c", + "libavformat/isom.c", + "libavformat/matroska.c", + "libavformat/matroskadec.c", + "libavformat/metadata.c", + "libavformat/mux.c", + "libavformat/oggdec.c", + "libavformat/oggparsecelt.c", + "libavformat/oggparsedaala.c", + "libavformat/oggparsedirac.c", + "libavformat/oggparseflac.c", + "libavformat/oggparseogm.c", + "libavformat/oggparseopus.c", + "libavformat/oggparseskeleton.c", + "libavformat/oggparsespeex.c", + "libavformat/oggparsetheora.c", + "libavformat/oggparsevorbis.c", + "libavformat/oggparsevp8.c", + "libavformat/os_support.c", + "libavformat/qtpalette.c", + "libavformat/replaygain.c", + "libavformat/riff.c", + "libavformat/riffdec.c", + "libavformat/rmsipr.c", + "libavformat/url.c", + "libavformat/vorbiscomment.c", + "libavformat/w64.c", + "libavformat/wavdec.c", + "libavutil/aes.c", + "libavutil/aes_ctr.c", + "libavutil/autorename_libavutil_cpu.c", + "libavutil/avstring.c", + "libavutil/base64.c", + "libavutil/bprint.c", + "libavutil/buffer.c", + "libavutil/camellia.c", + "libavutil/channel_layout.c", + "libavutil/color_utils.c", + "libavutil/crc.c", + "libavutil/dict.c", + "libavutil/display.c", + "libavutil/downmix_info.c", + "libavutil/error.c", + "libavutil/eval.c", + "libavutil/fifo.c", + "libavutil/file_open.c", + "libavutil/fixed_dsp.c", + "libavutil/float_dsp.c", + "libavutil/frame.c", + "libavutil/imgutils.c", + "libavutil/integer.c", + "libavutil/intmath.c", + "libavutil/lfg.c", + "libavutil/log.c", + "libavutil/log2_tab.c", + "libavutil/mathematics.c", + "libavutil/md5.c", + "libavutil/mem.c", + "libavutil/opt.c", + "libavutil/parseutils.c", + "libavutil/pixdesc.c", + "libavutil/pixelutils.c", + "libavutil/random_seed.c", + "libavutil/rational.c", + "libavutil/reverse.c", + "libavutil/samplefmt.c", + "libavutil/sha.c", + "libavutil/stereo3d.c", + "libavutil/tea.c", + "libavutil/threadmessage.c", + "libavutil/time.c", + "libavutil/timecode.c", + "libavutil/twofish.c", + "libavutil/utils.c", + ] +} + +if ((is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromiumOS") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chromium")) { + ffmpeg_c_sources += [ + "libavcodec/h264pred.c", + "libavcodec/hpeldsp.c", + "libavcodec/videodsp.c", + "libavcodec/vp3.c", + "libavcodec/vp3_parser.c", + "libavcodec/vp3dsp.c", + "libavcodec/vp56rac.c", + "libavcodec/vp8.c", + "libavcodec/vp8_parser.c", + "libavcodec/vp8dsp.c", + ] +} + +if ((is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "mips64el" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromiumOS") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome")) { + ffmpeg_c_sources += [ + "libavformat/rawdec.c", + ] +} + +if ((is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "mips64el" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome")) { + ffmpeg_c_sources += [ + "libavcodec/aac_ac3_parser.c", + "libavcodec/aac_parser.c", + "libavcodec/aacadtsdec.c", + "libavcodec/aacps_float.c", + "libavcodec/aacpsdsp_float.c", + "libavcodec/aacsbr.c", + "libavcodec/aactab.c", + "libavcodec/ac3tab.c", + "libavcodec/autorename_libavcodec_aacdec.c", + "libavcodec/autorename_libavcodec_mpegaudiodsp.c", + "libavcodec/dct.c", + "libavcodec/dct32_fixed.c", + "libavcodec/dct32_float.c", + "libavcodec/imdct15.c", + "libavcodec/kbdwin.c", + "libavcodec/mpegaudio.c", + "libavcodec/mpegaudio_parser.c", + "libavcodec/mpegaudiodec_fixed.c", + "libavcodec/mpegaudiodecheader.c", + "libavcodec/mpegaudiodsp_data.c", + "libavcodec/mpegaudiodsp_fixed.c", + "libavcodec/mpegaudiodsp_float.c", + "libavcodec/sbrdsp.c", + "libavcodec/sinewin.c", + "libavcodec/sinewin_fixed.c", + "libavformat/aacdec.c", + "libavformat/apetag.c", + "libavformat/img2.c", + "libavformat/mov.c", + "libavformat/mov_chan.c", + "libavformat/mp3dec.c", + ] +} + +if ((is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm64" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "mips64el" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "mips64el" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "mipsel" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x86" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chromium")) { + ffmpeg_c_sources += [ + "compat/strtod.c", + ] +} + +if ((is_android && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x86" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromiumOS") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chromium")) { + ffmpeg_c_sources += [ + "libavcodec/x86/autorename_libavcodec_x86_vorbisdsp_init.c", + "libavcodec/x86/constants.c", + "libavcodec/x86/fft_init.c", + "libavutil/x86/autorename_libavutil_x86_cpu.c", + "libavutil/x86/autorename_libavutil_x86_float_dsp_init.c", + "libavutil/x86/lls_init.c", + ] +} + +if ((is_android && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromiumOS") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chromium")) { + ffmpeg_yasm_sources += [ + "libavcodec/x86/fft.asm", + "libavcodec/x86/vorbisdsp.asm", + "libavutil/x86/cpuid.asm", + "libavutil/x86/float_dsp.asm", + "libavutil/x86/lls.asm", + ] +} + +if ((is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome")) { + ffmpeg_c_sources += [ + "libavcodec/cabac.c", + "libavcodec/h264.c", + "libavcodec/h264_cabac.c", + "libavcodec/h264_cavlc.c", + "libavcodec/h264_direct.c", + "libavcodec/h264_loopfilter.c", + "libavcodec/h264_mb.c", + "libavcodec/h264_parser.c", + "libavcodec/h264_picture.c", + "libavcodec/h264_ps.c", + "libavcodec/h264_refs.c", + "libavcodec/h264_sei.c", + "libavcodec/h264_slice.c", + "libavcodec/h264chroma.c", + "libavcodec/h264dsp.c", + "libavcodec/h264idct.c", + "libavcodec/h264qpel.c", + "libavcodec/startcode.c", + ] +} + +if ((is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromiumOS")) { + ffmpeg_c_sources += [ + "libavcodec/arm/fft_fixed_init_arm.c", + "libavcodec/arm/fft_init_arm.c", + "libavcodec/arm/vorbisdsp_init_arm.c", + "libavutil/arm/autorename_libavutil_arm_cpu.c", + "libavutil/arm/float_dsp_init_arm.c", + "libavutil/arm/float_dsp_init_vfp.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/arm/fft_vfp.S", + "libavcodec/arm/mdct_vfp.S", + "libavutil/arm/float_dsp_vfp.S", + ] +} + +if ((is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromiumOS")) { + ffmpeg_c_sources += [ + "libavcodec/flac.c", + "libavcodec/flac_parser.c", + "libavcodec/flacdata.c", + "libavcodec/flacdec.c", + "libavcodec/flacdsp.c", + "libavformat/autorename_libavformat_flacdec.c", + ] +} + +if ((is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromiumOS")) { + ffmpeg_c_sources += [ + "libavcodec/arm/h264pred_init_arm.c", + "libavcodec/arm/hpeldsp_init_arm.c", + "libavcodec/arm/hpeldsp_init_armv6.c", + "libavcodec/arm/videodsp_init_arm.c", + "libavcodec/arm/videodsp_init_armv5te.c", + "libavcodec/arm/vp3dsp_init_arm.c", + "libavcodec/arm/vp8dsp_init_arm.c", + "libavcodec/arm/vp8dsp_init_armv6.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/arm/hpeldsp_arm.S", + "libavcodec/arm/hpeldsp_armv6.S", + "libavcodec/arm/videodsp_armv5te.S", + "libavcodec/arm/vp8_armv6.S", + "libavcodec/arm/vp8dsp_armv6.S", + ] +} + +if ((is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromiumOS")) { + ffmpeg_c_sources += [ + "libavutil/arm/float_dsp_init_neon.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/arm/autorename_libavcodec_arm_fft_neon.S", + "libavcodec/arm/autorename_libavcodec_arm_mdct_neon.S", + "libavcodec/arm/autorename_libavcodec_arm_vorbisdsp_neon.S", + "libavcodec/arm/fft_fixed_neon.S", + "libavcodec/arm/mdct_fixed_neon.S", + "libavcodec/arm/rdft_neon.S", + "libavutil/arm/autorename_libavutil_arm_float_dsp_neon.S", + ] +} + +if ((is_linux && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromiumOS") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chromium")) { + ffmpeg_c_sources += [ + "libavcodec/x86/autorename_libavcodec_x86_videodsp_init.c", + "libavcodec/x86/h264_intrapred_init.c", + "libavcodec/x86/hpeldsp_init.c", + "libavcodec/x86/vp3dsp_init.c", + "libavcodec/x86/vp8dsp_init.c", + ] + ffmpeg_yasm_sources += [ + "libavcodec/x86/fpel.asm", + "libavcodec/x86/h264_intrapred.asm", + "libavcodec/x86/h264_intrapred_10bit.asm", + "libavcodec/x86/hpeldsp.asm", + "libavcodec/x86/videodsp.asm", + "libavcodec/x86/vp3dsp.asm", + "libavcodec/x86/vp8dsp.asm", + "libavcodec/x86/vp8dsp_loopfilter.asm", + ] +} + +if ((is_android && current_cpu == "mips64el" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "mips64el" && ffmpeg_branding == "Chromium") || (is_android && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "mipsel" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromiumOS")) { + ffmpeg_c_sources += [ + "libavutil/mips/float_dsp_mips.c", + ] +} + +if ((is_android && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome")) { + ffmpeg_c_sources += [ + "libavcodec/x86/aacpsdsp_init.c", + "libavcodec/x86/dct_init.c", + "libavcodec/x86/mpegaudiodsp.c", + "libavcodec/x86/sbrdsp_init.c", + ] +} + +if ((is_android && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome")) { + ffmpeg_yasm_sources += [ + "libavcodec/x86/aacpsdsp.asm", + "libavcodec/x86/dct32.asm", + "libavcodec/x86/imdct36.asm", + "libavcodec/x86/sbrdsp.asm", + ] +} + +if ((is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS")) { + ffmpeg_c_sources += [ + "libavcodec/arm/aacpsdsp_init_arm.c", + "libavcodec/arm/mpegaudiodsp_init_arm.c", + "libavcodec/arm/sbrdsp_init_arm.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/arm/mpegaudiodsp_fixed_armv6.S", + ] +} + +if ((is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS")) { + ffmpeg_c_sources += [ + "libavcodec/acelp_filters.c", + "libavcodec/acelp_pitch_delay.c", + "libavcodec/acelp_vectors.c", + "libavcodec/amrnbdec.c", + "libavcodec/amrwbdec.c", + "libavcodec/autorename_libavcodec_gsmdec.c", + "libavcodec/autorename_libavcodec_mpegvideo.c", + "libavcodec/autorename_libavcodec_mpegvideodsp.c", + "libavcodec/autorename_libavcodec_simple_idct.c", + "libavcodec/blockdsp.c", + "libavcodec/celp_filters.c", + "libavcodec/celp_math.c", + "libavcodec/error_resilience.c", + "libavcodec/exif.c", + "libavcodec/faandct.c", + "libavcodec/faanidct.c", + "libavcodec/fdctdsp.c", + "libavcodec/flvdec.c", + "libavcodec/gsm_parser.c", + "libavcodec/gsmdec_data.c", + "libavcodec/h263.c", + "libavcodec/h263_parser.c", + "libavcodec/h263data.c", + "libavcodec/h263dec.c", + "libavcodec/h263dsp.c", + "libavcodec/idctdsp.c", + "libavcodec/intelh263dec.c", + "libavcodec/ituh263dec.c", + "libavcodec/jfdctfst.c", + "libavcodec/jfdctint.c", + "libavcodec/jrevdct.c", + "libavcodec/lsp.c", + "libavcodec/me_cmp.c", + "libavcodec/mpeg4video.c", + "libavcodec/mpeg4video_parser.c", + "libavcodec/mpeg4videodec.c", + "libavcodec/mpeg_er.c", + "libavcodec/mpegpicture.c", + "libavcodec/mpegutils.c", + "libavcodec/mpegvideo_motion.c", + "libavcodec/mpegvideodata.c", + "libavcodec/msgsmdec.c", + "libavcodec/pixblockdsp.c", + "libavcodec/qpeldsp.c", + "libavcodec/rl.c", + "libavcodec/tiff_common.c", + "libavcodec/xvididct.c", + "libavformat/amr.c", + "libavformat/avidec.c", + "libavformat/gsmdec.c", + ] +} + +if ((is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromiumOS")) { + ffmpeg_c_sources += [ + "libavcodec/mips/h264pred_init_mips.c", + "libavcodec/mips/hpeldsp_init_mips.c", + "libavcodec/mips/vp8dsp_init_mips.c", + ] +} + +if ((is_android && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm64" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromiumOS")) { + ffmpeg_c_sources += [ + "libavcodec/aarch64/fft_init_aarch64.c", + "libavcodec/aarch64/vorbisdsp_init.c", + "libavutil/aarch64/cpu.c", + "libavutil/aarch64/float_dsp_init.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/aarch64/fft_neon.S", + "libavcodec/aarch64/mdct_neon.S", + "libavcodec/aarch64/vorbisdsp_neon.S", + "libavutil/aarch64/float_dsp_neon.S", + ] +} + +if ((is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromiumOS")) { + ffmpeg_c_sources += [ + "libavcodec/aarch64/h264pred_init.c", + "libavcodec/aarch64/hpeldsp_init_aarch64.c", + "libavcodec/aarch64/videodsp_init.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/aarch64/autorename_libavcodec_aarch64_h264pred_neon.S", + "libavcodec/aarch64/autorename_libavcodec_aarch64_hpeldsp_neon.S", + "libavcodec/aarch64/videodsp.S", + ] +} + +if ((is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromiumOS")) { + ffmpeg_c_sources += [ + "libavcodec/arm/flacdsp_init_arm.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/arm/flacdsp_arm.S", + ] +} + +if ((is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS")) { + ffmpeg_c_sources += [ + "libavcodec/arm/h264chroma_init_arm.c", + "libavcodec/arm/h264dsp_init_arm.c", + "libavcodec/arm/h264qpel_init_arm.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/arm/startcode_armv6.S", + ] +} + +if ((is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chromium") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromiumOS")) { + ffmpeg_c_sources += [ + "libavcodec/arm/hpeldsp_init_neon.c", + "libavcodec/arm/vp8dsp_init_neon.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/arm/h264pred_neon.S", + "libavcodec/arm/hpeldsp_neon.S", + "libavcodec/arm/vp3dsp_neon.S", + "libavcodec/arm/vp8dsp_neon.S", + ] +} + +if ((is_android && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "arm" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS")) { + ffmpeg_gas_sources += [ + "libavcodec/arm/aacpsdsp_neon.S", + "libavcodec/arm/sbrdsp_neon.S", + ] +} + +if ((is_linux && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_mac && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome")) { + ffmpeg_c_sources += [ + "libavcodec/x86/h264_qpel.c", + "libavcodec/x86/h264chroma_init.c", + "libavcodec/x86/h264dsp_init.c", + ] + ffmpeg_yasm_sources += [ + "libavcodec/x86/h264_chromamc.asm", + "libavcodec/x86/h264_chromamc_10bit.asm", + "libavcodec/x86/h264_deblock.asm", + "libavcodec/x86/h264_deblock_10bit.asm", + "libavcodec/x86/h264_idct.asm", + "libavcodec/x86/h264_idct_10bit.asm", + "libavcodec/x86/h264_qpel_10bit.asm", + "libavcodec/x86/h264_qpel_8bit.asm", + "libavcodec/x86/h264_weight.asm", + "libavcodec/x86/h264_weight_10bit.asm", + "libavcodec/x86/qpel.asm", + ] +} + +if ((is_android && current_cpu == "mips64el" && ffmpeg_branding == "Chrome") || (is_android && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS")) { + ffmpeg_c_sources += [ + "libavcodec/mips/aacdec_mips.c", + "libavcodec/mips/aacpsdsp_mips.c", + "libavcodec/mips/aacsbr_mips.c", + "libavcodec/mips/sbrdsp_mips.c", + ] +} + +if ((is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromiumOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromiumOS")) { + ffmpeg_c_sources += [ + "libavcodec/x86/flacdsp_init.c", + ] + ffmpeg_yasm_sources += [ + "libavcodec/x86/flacdsp.asm", + ] +} + +if ((is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chromium") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x86" && ffmpeg_branding == "Chromium")) { + ffmpeg_c_sources += [ + "compat/msvcrt/snprintf.c", + ] +} + +if ((is_linux && current_cpu == "mipsel" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS")) { + ffmpeg_c_sources += [ + "libavcodec/mips/h264chroma_init_mips.c", + "libavcodec/mips/h264dsp_init_mips.c", + "libavcodec/mips/h264qpel_init_mips.c", + ] +} + +if ((is_android && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS")) { + ffmpeg_c_sources += [ + "libavcodec/aarch64/imdct15_init.c", + "libavcodec/aarch64/mpegaudiodsp_init.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/aarch64/imdct15_neon.S", + "libavcodec/aarch64/mpegaudiodsp_neon.S", + ] +} + +if ((is_linux && current_cpu == "arm64" && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS")) { + ffmpeg_c_sources += [ + "libavcodec/aarch64/h264chroma_init_aarch64.c", + "libavcodec/aarch64/h264dsp_init_aarch64.c", + "libavcodec/aarch64/h264qpel_init_aarch64.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/aarch64/autorename_libavcodec_aarch64_h264cmc_neon.S", + "libavcodec/aarch64/autorename_libavcodec_aarch64_h264dsp_neon.S", + "libavcodec/aarch64/autorename_libavcodec_aarch64_h264idct_neon.S", + "libavcodec/aarch64/autorename_libavcodec_aarch64_h264qpel_neon.S", + ] +} + +if ((is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm" && ffmpeg_branding == "ChromeOS")) { + ffmpeg_c_sources += [ + "libavcodec/arm/blockdsp_init_arm.c", + "libavcodec/arm/idctdsp_init_arm.c", + "libavcodec/arm/idctdsp_init_armv5te.c", + "libavcodec/arm/idctdsp_init_armv6.c", + "libavcodec/arm/me_cmp_init_arm.c", + "libavcodec/arm/mpegvideo_arm.c", + "libavcodec/arm/mpegvideo_armv5te.c", + "libavcodec/arm/pixblockdsp_init_arm.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/arm/idctdsp_arm.S", + "libavcodec/arm/idctdsp_armv6.S", + "libavcodec/arm/jrevdct_arm.S", + "libavcodec/arm/me_cmp_armv6.S", + "libavcodec/arm/mpegvideo_armv5te_s.S", + "libavcodec/arm/pixblockdsp_armv6.S", + "libavcodec/arm/simple_idct_arm.S", + "libavcodec/arm/simple_idct_armv5te.S", + "libavcodec/arm/simple_idct_armv6.S", + ] +} + +if ((is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "arm64" && ffmpeg_branding == "ChromeOS")) { + ffmpeg_c_sources += [ + "libavcodec/neon/autorename_libavcodec_neon_mpegvideo.c", + ] +} + +if ((is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "Chrome") || (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS")) { + ffmpeg_gas_sources += [ + "libavcodec/arm/h264cmc_neon.S", + "libavcodec/arm/h264dsp_neon.S", + "libavcodec/arm/h264idct_neon.S", + "libavcodec/arm/h264qpel_neon.S", + ] +} + +if ((is_win && current_cpu == "x64" && ffmpeg_branding == "Chrome") || (is_win && current_cpu == "x64" && ffmpeg_branding == "Chromium")) { + ffmpeg_yasm_sources += [ + "libavutil/x86/emms.asm", + ] +} + +if ((is_linux && current_cpu == "x64" && ffmpeg_branding == "ChromeOS") || (is_linux && current_cpu == "x86" && ffmpeg_branding == "ChromeOS")) { + ffmpeg_c_sources += [ + "libavcodec/x86/blockdsp_init.c", + "libavcodec/x86/fdct.c", + "libavcodec/x86/fdctdsp_init.c", + "libavcodec/x86/h263dsp_init.c", + "libavcodec/x86/idctdsp_init.c", + "libavcodec/x86/me_cmp_init.c", + "libavcodec/x86/mpegvideo.c", + "libavcodec/x86/mpegvideodsp.c", + "libavcodec/x86/pixblockdsp_init.c", + "libavcodec/x86/qpeldsp_init.c", + "libavcodec/x86/simple_idct.c", + "libavcodec/x86/xvididct_init.c", + ] + ffmpeg_yasm_sources += [ + "libavcodec/x86/blockdsp.asm", + "libavcodec/x86/h263_loopfilter.asm", + "libavcodec/x86/idctdsp.asm", + "libavcodec/x86/me_cmp.asm", + "libavcodec/x86/pixblockdsp.asm", + "libavcodec/x86/qpeldsp.asm", + "libavcodec/x86/simple_idct10.asm", + "libavcodec/x86/xvididct.asm", + ] +} + +if (is_linux && current_cpu == "mipsel" && ffmpeg_branding == "ChromeOS") { + ffmpeg_c_sources += [ + "libavcodec/mips/blockdsp_init_mips.c", + "libavcodec/mips/h263dsp_init_mips.c", + "libavcodec/mips/idctdsp_init_mips.c", + "libavcodec/mips/me_cmp_init_mips.c", + "libavcodec/mips/mpegvideo_init_mips.c", + "libavcodec/mips/pixblockdsp_init_mips.c", + "libavcodec/mips/qpeldsp_init_mips.c", + "libavcodec/mips/xvididct_init_mips.c", + ] +} + +if (is_linux && current_cpu == "arm" && arm_use_neon && ffmpeg_branding == "ChromeOS") { + ffmpeg_c_sources += [ + "libavcodec/arm/blockdsp_init_neon.c", + "libavcodec/arm/idctdsp_init_neon.c", + ] + ffmpeg_gas_sources += [ + "libavcodec/arm/blockdsp_neon.S", + "libavcodec/arm/idctdsp_neon.S", + "libavcodec/arm/mpegvideo_neon.S", + "libavcodec/arm/simple_idct_neon.S", + ] +} + diff --git a/src/third_party/ffmpeg/ffmpeg_generated.gypi b/src/third_party/ffmpeg/ffmpeg_generated.gypi new file mode 100644 index 0000000..133779f --- /dev/null +++ b/src/third_party/ffmpeg/ffmpeg_generated.gypi @@ -0,0 +1,638 @@ +# Copyright 2016 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# NOTE: this file is autogenerated by ffmpeg/chromium/scripts/generate_gyp.py + + +{ + 'variables': { + 'conditions': [ + ['OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS"', { + 'c_sources': [ + 'libavcodec/arm/blockdsp_init_neon.c', + 'libavcodec/arm/idctdsp_init_neon.c', + ], + 'asm_sources': [ + 'libavcodec/arm/blockdsp_neon.S', + 'libavcodec/arm/idctdsp_neon.S', + 'libavcodec/arm/mpegvideo_neon.S', + 'libavcodec/arm/simple_idct_neon.S', + ], + }], # OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS" + ['OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS"', { + 'c_sources': [ + 'libavcodec/mips/blockdsp_init_mips.c', + 'libavcodec/mips/h263dsp_init_mips.c', + 'libavcodec/mips/idctdsp_init_mips.c', + 'libavcodec/mips/me_cmp_init_mips.c', + 'libavcodec/mips/mpegvideo_init_mips.c', + 'libavcodec/mips/pixblockdsp_init_mips.c', + 'libavcodec/mips/qpeldsp_init_mips.c', + 'libavcodec/mips/xvididct_init_mips.c', + ], + }], # OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS" + ['(OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS")', { + 'c_sources': [ + 'libavcodec/x86/blockdsp_init.c', + 'libavcodec/x86/fdct.c', + 'libavcodec/x86/fdctdsp_init.c', + 'libavcodec/x86/h263dsp_init.c', + 'libavcodec/x86/idctdsp_init.c', + 'libavcodec/x86/me_cmp_init.c', + 'libavcodec/x86/mpegvideo.c', + 'libavcodec/x86/mpegvideodsp.c', + 'libavcodec/x86/pixblockdsp_init.c', + 'libavcodec/x86/qpeldsp_init.c', + 'libavcodec/x86/simple_idct.c', + 'libavcodec/x86/xvididct_init.c', + ], + 'asm_sources': [ + 'libavcodec/x86/blockdsp.asm', + 'libavcodec/x86/h263_loopfilter.asm', + 'libavcodec/x86/idctdsp.asm', + 'libavcodec/x86/me_cmp.asm', + 'libavcodec/x86/pixblockdsp.asm', + 'libavcodec/x86/qpeldsp.asm', + 'libavcodec/x86/simple_idct10.asm', + 'libavcodec/x86/xvididct.asm', + ], + }], # (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") + ['(OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium")', { + 'asm_sources': [ + 'libavutil/x86/emms.asm', + ], + }], # (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium") + ['(OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS")', { + 'asm_sources': [ + 'libavcodec/arm/h264cmc_neon.S', + 'libavcodec/arm/h264dsp_neon.S', + 'libavcodec/arm/h264idct_neon.S', + 'libavcodec/arm/h264qpel_neon.S', + ], + }], # (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") + ['(OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS")', { + 'c_sources': [ + 'libavcodec/neon/autorename_libavcodec_neon_mpegvideo.c', + ], + }], # (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") + ['(OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS")', { + 'c_sources': [ + 'libavcodec/arm/blockdsp_init_arm.c', + 'libavcodec/arm/idctdsp_init_arm.c', + 'libavcodec/arm/idctdsp_init_armv5te.c', + 'libavcodec/arm/idctdsp_init_armv6.c', + 'libavcodec/arm/me_cmp_init_arm.c', + 'libavcodec/arm/mpegvideo_arm.c', + 'libavcodec/arm/mpegvideo_armv5te.c', + 'libavcodec/arm/pixblockdsp_init_arm.c', + ], + 'asm_sources': [ + 'libavcodec/arm/idctdsp_arm.S', + 'libavcodec/arm/idctdsp_armv6.S', + 'libavcodec/arm/jrevdct_arm.S', + 'libavcodec/arm/me_cmp_armv6.S', + 'libavcodec/arm/mpegvideo_armv5te_s.S', + 'libavcodec/arm/pixblockdsp_armv6.S', + 'libavcodec/arm/simple_idct_arm.S', + 'libavcodec/arm/simple_idct_armv5te.S', + 'libavcodec/arm/simple_idct_armv6.S', + ], + }], # (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") + ['(OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS")', { + 'c_sources': [ + 'libavcodec/aarch64/h264chroma_init_aarch64.c', + 'libavcodec/aarch64/h264dsp_init_aarch64.c', + 'libavcodec/aarch64/h264qpel_init_aarch64.c', + ], + 'asm_sources': [ + 'libavcodec/aarch64/autorename_libavcodec_aarch64_h264cmc_neon.S', + 'libavcodec/aarch64/autorename_libavcodec_aarch64_h264dsp_neon.S', + 'libavcodec/aarch64/autorename_libavcodec_aarch64_h264idct_neon.S', + 'libavcodec/aarch64/autorename_libavcodec_aarch64_h264qpel_neon.S', + ], + }], # (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") + ['(OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS")', { + 'c_sources': [ + 'libavcodec/aarch64/imdct15_init.c', + 'libavcodec/aarch64/mpegaudiodsp_init.c', + ], + 'asm_sources': [ + 'libavcodec/aarch64/imdct15_neon.S', + 'libavcodec/aarch64/mpegaudiodsp_neon.S', + ], + }], # (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") + ['(OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS")', { + 'c_sources': [ + 'libavcodec/mips/h264chroma_init_mips.c', + 'libavcodec/mips/h264dsp_init_mips.c', + 'libavcodec/mips/h264qpel_init_mips.c', + ], + }], # (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") + ['(OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium")', { + 'c_sources': [ + 'compat/msvcrt/snprintf.c', + ], + }], # (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium") + ['(OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS")', { + 'c_sources': [ + 'libavcodec/x86/flacdsp_init.c', + ], + 'asm_sources': [ + 'libavcodec/x86/flacdsp.asm', + ], + }], # (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") + ['(OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS")', { + 'c_sources': [ + 'libavcodec/mips/aacdec_mips.c', + 'libavcodec/mips/aacpsdsp_mips.c', + 'libavcodec/mips/aacsbr_mips.c', + 'libavcodec/mips/sbrdsp_mips.c', + ], + }], # (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") + ['(OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome")', { + 'c_sources': [ + 'libavcodec/x86/h264_qpel.c', + 'libavcodec/x86/h264chroma_init.c', + 'libavcodec/x86/h264dsp_init.c', + ], + 'asm_sources': [ + 'libavcodec/x86/h264_chromamc.asm', + 'libavcodec/x86/h264_chromamc_10bit.asm', + 'libavcodec/x86/h264_deblock.asm', + 'libavcodec/x86/h264_deblock_10bit.asm', + 'libavcodec/x86/h264_idct.asm', + 'libavcodec/x86/h264_idct_10bit.asm', + 'libavcodec/x86/h264_qpel_10bit.asm', + 'libavcodec/x86/h264_qpel_8bit.asm', + 'libavcodec/x86/h264_weight.asm', + 'libavcodec/x86/h264_weight_10bit.asm', + 'libavcodec/x86/qpel.asm', + ], + }], # (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") + ['(OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS")', { + 'asm_sources': [ + 'libavcodec/arm/aacpsdsp_neon.S', + 'libavcodec/arm/sbrdsp_neon.S', + ], + }], # (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") + ['(OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS")', { + 'c_sources': [ + 'libavcodec/arm/hpeldsp_init_neon.c', + 'libavcodec/arm/vp8dsp_init_neon.c', + ], + 'asm_sources': [ + 'libavcodec/arm/h264pred_neon.S', + 'libavcodec/arm/hpeldsp_neon.S', + 'libavcodec/arm/vp3dsp_neon.S', + 'libavcodec/arm/vp8dsp_neon.S', + ], + }], # (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") + ['(OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS")', { + 'c_sources': [ + 'libavcodec/arm/h264chroma_init_arm.c', + 'libavcodec/arm/h264dsp_init_arm.c', + 'libavcodec/arm/h264qpel_init_arm.c', + ], + 'asm_sources': [ + 'libavcodec/arm/startcode_armv6.S', + ], + }], # (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") + ['(OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS")', { + 'c_sources': [ + 'libavcodec/arm/flacdsp_init_arm.c', + ], + 'asm_sources': [ + 'libavcodec/arm/flacdsp_arm.S', + ], + }], # (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS") + ['(OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS")', { + 'c_sources': [ + 'libavcodec/aarch64/h264pred_init.c', + 'libavcodec/aarch64/hpeldsp_init_aarch64.c', + 'libavcodec/aarch64/videodsp_init.c', + ], + 'asm_sources': [ + 'libavcodec/aarch64/autorename_libavcodec_aarch64_h264pred_neon.S', + 'libavcodec/aarch64/autorename_libavcodec_aarch64_hpeldsp_neon.S', + 'libavcodec/aarch64/videodsp.S', + ], + }], # (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS") + ['(OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS")', { + 'c_sources': [ + 'libavcodec/aarch64/fft_init_aarch64.c', + 'libavcodec/aarch64/vorbisdsp_init.c', + 'libavutil/aarch64/cpu.c', + 'libavutil/aarch64/float_dsp_init.c', + ], + 'asm_sources': [ + 'libavcodec/aarch64/fft_neon.S', + 'libavcodec/aarch64/mdct_neon.S', + 'libavcodec/aarch64/vorbisdsp_neon.S', + 'libavutil/aarch64/float_dsp_neon.S', + ], + }], # (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS") + ['(OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS")', { + 'c_sources': [ + 'libavcodec/mips/h264pred_init_mips.c', + 'libavcodec/mips/hpeldsp_init_mips.c', + 'libavcodec/mips/vp8dsp_init_mips.c', + ], + }], # (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS") + ['(OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS")', { + 'c_sources': [ + 'libavcodec/acelp_filters.c', + 'libavcodec/acelp_pitch_delay.c', + 'libavcodec/acelp_vectors.c', + 'libavcodec/amrnbdec.c', + 'libavcodec/amrwbdec.c', + 'libavcodec/autorename_libavcodec_gsmdec.c', + 'libavcodec/autorename_libavcodec_mpegvideo.c', + 'libavcodec/autorename_libavcodec_mpegvideodsp.c', + 'libavcodec/autorename_libavcodec_simple_idct.c', + 'libavcodec/blockdsp.c', + 'libavcodec/celp_filters.c', + 'libavcodec/celp_math.c', + 'libavcodec/error_resilience.c', + 'libavcodec/exif.c', + 'libavcodec/faandct.c', + 'libavcodec/faanidct.c', + 'libavcodec/fdctdsp.c', + 'libavcodec/flvdec.c', + 'libavcodec/gsm_parser.c', + 'libavcodec/gsmdec_data.c', + 'libavcodec/h263.c', + 'libavcodec/h263_parser.c', + 'libavcodec/h263data.c', + 'libavcodec/h263dec.c', + 'libavcodec/h263dsp.c', + 'libavcodec/idctdsp.c', + 'libavcodec/intelh263dec.c', + 'libavcodec/ituh263dec.c', + 'libavcodec/jfdctfst.c', + 'libavcodec/jfdctint.c', + 'libavcodec/jrevdct.c', + 'libavcodec/lsp.c', + 'libavcodec/me_cmp.c', + 'libavcodec/mpeg4video.c', + 'libavcodec/mpeg4video_parser.c', + 'libavcodec/mpeg4videodec.c', + 'libavcodec/mpeg_er.c', + 'libavcodec/mpegpicture.c', + 'libavcodec/mpegutils.c', + 'libavcodec/mpegvideo_motion.c', + 'libavcodec/mpegvideodata.c', + 'libavcodec/msgsmdec.c', + 'libavcodec/pixblockdsp.c', + 'libavcodec/qpeldsp.c', + 'libavcodec/rl.c', + 'libavcodec/tiff_common.c', + 'libavcodec/xvididct.c', + 'libavformat/amr.c', + 'libavformat/avidec.c', + 'libavformat/gsmdec.c', + ], + }], # (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") + ['(OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS")', { + 'c_sources': [ + 'libavcodec/arm/aacpsdsp_init_arm.c', + 'libavcodec/arm/mpegaudiodsp_init_arm.c', + 'libavcodec/arm/sbrdsp_init_arm.c', + ], + 'asm_sources': [ + 'libavcodec/arm/mpegaudiodsp_fixed_armv6.S', + ], + }], # (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") + ['(OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome")', { + 'asm_sources': [ + 'libavcodec/x86/aacpsdsp.asm', + 'libavcodec/x86/dct32.asm', + 'libavcodec/x86/imdct36.asm', + 'libavcodec/x86/sbrdsp.asm', + ], + }], # (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") + ['(OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome")', { + 'c_sources': [ + 'libavcodec/x86/aacpsdsp_init.c', + 'libavcodec/x86/dct_init.c', + 'libavcodec/x86/mpegaudiodsp.c', + 'libavcodec/x86/sbrdsp_init.c', + ], + }], # (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") + ['(OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS")', { + 'c_sources': [ + 'libavutil/mips/float_dsp_mips.c', + ], + }], # (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS") + ['(OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium")', { + 'c_sources': [ + 'libavcodec/x86/autorename_libavcodec_x86_videodsp_init.c', + 'libavcodec/x86/h264_intrapred_init.c', + 'libavcodec/x86/hpeldsp_init.c', + 'libavcodec/x86/vp3dsp_init.c', + 'libavcodec/x86/vp8dsp_init.c', + ], + 'asm_sources': [ + 'libavcodec/x86/fpel.asm', + 'libavcodec/x86/h264_intrapred.asm', + 'libavcodec/x86/h264_intrapred_10bit.asm', + 'libavcodec/x86/hpeldsp.asm', + 'libavcodec/x86/videodsp.asm', + 'libavcodec/x86/vp3dsp.asm', + 'libavcodec/x86/vp8dsp.asm', + 'libavcodec/x86/vp8dsp_loopfilter.asm', + ], + }], # (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium") + ['(OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS")', { + 'c_sources': [ + 'libavutil/arm/float_dsp_init_neon.c', + ], + 'asm_sources': [ + 'libavcodec/arm/autorename_libavcodec_arm_fft_neon.S', + 'libavcodec/arm/autorename_libavcodec_arm_mdct_neon.S', + 'libavcodec/arm/autorename_libavcodec_arm_vorbisdsp_neon.S', + 'libavcodec/arm/fft_fixed_neon.S', + 'libavcodec/arm/mdct_fixed_neon.S', + 'libavcodec/arm/rdft_neon.S', + 'libavutil/arm/autorename_libavutil_arm_float_dsp_neon.S', + ], + }], # (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") + ['(OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS")', { + 'c_sources': [ + 'libavcodec/arm/h264pred_init_arm.c', + 'libavcodec/arm/hpeldsp_init_arm.c', + 'libavcodec/arm/hpeldsp_init_armv6.c', + 'libavcodec/arm/videodsp_init_arm.c', + 'libavcodec/arm/videodsp_init_armv5te.c', + 'libavcodec/arm/vp3dsp_init_arm.c', + 'libavcodec/arm/vp8dsp_init_arm.c', + 'libavcodec/arm/vp8dsp_init_armv6.c', + ], + 'asm_sources': [ + 'libavcodec/arm/hpeldsp_arm.S', + 'libavcodec/arm/hpeldsp_armv6.S', + 'libavcodec/arm/videodsp_armv5te.S', + 'libavcodec/arm/vp8_armv6.S', + 'libavcodec/arm/vp8dsp_armv6.S', + ], + }], # (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS") + ['(OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS")', { + 'c_sources': [ + 'libavcodec/flac.c', + 'libavcodec/flac_parser.c', + 'libavcodec/flacdata.c', + 'libavcodec/flacdec.c', + 'libavcodec/flacdsp.c', + 'libavformat/autorename_libavformat_flacdec.c', + ], + }], # (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") + ['(OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS")', { + 'c_sources': [ + 'libavcodec/arm/fft_fixed_init_arm.c', + 'libavcodec/arm/fft_init_arm.c', + 'libavcodec/arm/vorbisdsp_init_arm.c', + 'libavutil/arm/autorename_libavutil_arm_cpu.c', + 'libavutil/arm/float_dsp_init_arm.c', + 'libavutil/arm/float_dsp_init_vfp.c', + ], + 'asm_sources': [ + 'libavcodec/arm/fft_vfp.S', + 'libavcodec/arm/mdct_vfp.S', + 'libavutil/arm/float_dsp_vfp.S', + ], + }], # (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS") + ['(OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome")', { + 'c_sources': [ + 'libavcodec/cabac.c', + 'libavcodec/h264.c', + 'libavcodec/h264_cabac.c', + 'libavcodec/h264_cavlc.c', + 'libavcodec/h264_direct.c', + 'libavcodec/h264_loopfilter.c', + 'libavcodec/h264_mb.c', + 'libavcodec/h264_parser.c', + 'libavcodec/h264_picture.c', + 'libavcodec/h264_ps.c', + 'libavcodec/h264_refs.c', + 'libavcodec/h264_sei.c', + 'libavcodec/h264_slice.c', + 'libavcodec/h264chroma.c', + 'libavcodec/h264dsp.c', + 'libavcodec/h264idct.c', + 'libavcodec/h264qpel.c', + 'libavcodec/startcode.c', + ], + }], # (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") + ['(OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium")', { + 'asm_sources': [ + 'libavcodec/x86/fft.asm', + 'libavcodec/x86/vorbisdsp.asm', + 'libavutil/x86/cpuid.asm', + 'libavutil/x86/float_dsp.asm', + 'libavutil/x86/lls.asm', + ], + }], # (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium") + ['(OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium")', { + 'c_sources': [ + 'libavcodec/x86/autorename_libavcodec_x86_vorbisdsp_init.c', + 'libavcodec/x86/constants.c', + 'libavcodec/x86/fft_init.c', + 'libavutil/x86/autorename_libavutil_x86_cpu.c', + 'libavutil/x86/autorename_libavutil_x86_float_dsp_init.c', + 'libavutil/x86/lls_init.c', + ], + }], # (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium") + ['(OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium")', { + 'c_sources': [ + 'compat/strtod.c', + ], + }], # (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium") + ['(OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome")', { + 'c_sources': [ + 'libavcodec/aac_ac3_parser.c', + 'libavcodec/aac_parser.c', + 'libavcodec/aacadtsdec.c', + 'libavcodec/aacps_float.c', + 'libavcodec/aacpsdsp_float.c', + 'libavcodec/aacsbr.c', + 'libavcodec/aactab.c', + 'libavcodec/ac3tab.c', + 'libavcodec/autorename_libavcodec_aacdec.c', + 'libavcodec/autorename_libavcodec_mpegaudiodsp.c', + 'libavcodec/dct.c', + 'libavcodec/dct32_fixed.c', + 'libavcodec/dct32_float.c', + 'libavcodec/imdct15.c', + 'libavcodec/kbdwin.c', + 'libavcodec/mpegaudio.c', + 'libavcodec/mpegaudio_parser.c', + 'libavcodec/mpegaudiodec_fixed.c', + 'libavcodec/mpegaudiodecheader.c', + 'libavcodec/mpegaudiodsp_data.c', + 'libavcodec/mpegaudiodsp_fixed.c', + 'libavcodec/mpegaudiodsp_float.c', + 'libavcodec/sbrdsp.c', + 'libavcodec/sinewin.c', + 'libavcodec/sinewin_fixed.c', + 'libavformat/aacdec.c', + 'libavformat/apetag.c', + 'libavformat/img2.c', + 'libavformat/mov.c', + 'libavformat/mov_chan.c', + 'libavformat/mp3dec.c', + ], + }], # (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") + ['(OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome")', { + 'c_sources': [ + 'libavformat/rawdec.c', + ], + }], # (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") + ['(OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium")', { + 'c_sources': [ + 'libavcodec/h264pred.c', + 'libavcodec/hpeldsp.c', + 'libavcodec/videodsp.c', + 'libavcodec/vp3.c', + 'libavcodec/vp3_parser.c', + 'libavcodec/vp3dsp.c', + 'libavcodec/vp56rac.c', + 'libavcodec/vp8.c', + 'libavcodec/vp8_parser.c', + 'libavcodec/vp8dsp.c', + ], + }], # (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium") + ['(OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium")', { + 'c_sources': [ + 'libavcodec/allcodecs.c', + 'libavcodec/autorename_libavcodec_utils.c', + 'libavcodec/avdct.c', + 'libavcodec/avfft.c', + 'libavcodec/avpacket.c', + 'libavcodec/avpicture.c', + 'libavcodec/bitstream.c', + 'libavcodec/bitstream_filter.c', + 'libavcodec/codec_desc.c', + 'libavcodec/d3d11va.c', + 'libavcodec/dirac.c', + 'libavcodec/dv_profile.c', + 'libavcodec/fft_fixed.c', + 'libavcodec/fft_fixed_32.c', + 'libavcodec/fft_float.c', + 'libavcodec/fft_init_table.c', + 'libavcodec/golomb.c', + 'libavcodec/imgconvert.c', + 'libavcodec/mathtables.c', + 'libavcodec/mdct_fixed.c', + 'libavcodec/mdct_fixed_32.c', + 'libavcodec/mdct_float.c', + 'libavcodec/mpeg12data.c', + 'libavcodec/mpeg4audio.c', + 'libavcodec/mpegaudiodata.c', + 'libavcodec/options.c', + 'libavcodec/opus.c', + 'libavcodec/opus_parser.c', + 'libavcodec/parser.c', + 'libavcodec/pcm.c', + 'libavcodec/profiles.c', + 'libavcodec/pthread.c', + 'libavcodec/pthread_frame.c', + 'libavcodec/pthread_slice.c', + 'libavcodec/qsv_api.c', + 'libavcodec/raw.c', + 'libavcodec/rdft.c', + 'libavcodec/vorbis.c', + 'libavcodec/vorbis_data.c', + 'libavcodec/vorbis_parser.c', + 'libavcodec/vorbisdec.c', + 'libavcodec/vorbisdsp.c', + 'libavcodec/xiph.c', + 'libavformat/allformats.c', + 'libavformat/autorename_libavformat_options.c', + 'libavformat/autorename_libavformat_pcm.c', + 'libavformat/autorename_libavformat_utils.c', + 'libavformat/avio.c', + 'libavformat/aviobuf.c', + 'libavformat/cutils.c', + 'libavformat/dump.c', + 'libavformat/flac_picture.c', + 'libavformat/format.c', + 'libavformat/id3v1.c', + 'libavformat/id3v2.c', + 'libavformat/isom.c', + 'libavformat/matroska.c', + 'libavformat/matroskadec.c', + 'libavformat/metadata.c', + 'libavformat/mux.c', + 'libavformat/oggdec.c', + 'libavformat/oggparsecelt.c', + 'libavformat/oggparsedaala.c', + 'libavformat/oggparsedirac.c', + 'libavformat/oggparseflac.c', + 'libavformat/oggparseogm.c', + 'libavformat/oggparseopus.c', + 'libavformat/oggparseskeleton.c', + 'libavformat/oggparsespeex.c', + 'libavformat/oggparsetheora.c', + 'libavformat/oggparsevorbis.c', + 'libavformat/oggparsevp8.c', + 'libavformat/os_support.c', + 'libavformat/qtpalette.c', + 'libavformat/replaygain.c', + 'libavformat/riff.c', + 'libavformat/riffdec.c', + 'libavformat/rmsipr.c', + 'libavformat/url.c', + 'libavformat/vorbiscomment.c', + "libavformat/w64.c", + 'libavformat/wavdec.c', + 'libavutil/aes.c', + 'libavutil/aes_ctr.c', + 'libavutil/autorename_libavutil_cpu.c', + 'libavutil/avstring.c', + 'libavutil/base64.c', + 'libavutil/bprint.c', + 'libavutil/buffer.c', + 'libavutil/camellia.c', + 'libavutil/channel_layout.c', + 'libavutil/color_utils.c', + 'libavutil/crc.c', + 'libavutil/dict.c', + 'libavutil/display.c', + 'libavutil/downmix_info.c', + 'libavutil/error.c', + 'libavutil/eval.c', + 'libavutil/fifo.c', + 'libavutil/file_open.c', + 'libavutil/fixed_dsp.c', + 'libavutil/float_dsp.c', + 'libavutil/frame.c', + 'libavutil/imgutils.c', + 'libavutil/integer.c', + 'libavutil/intmath.c', + 'libavutil/lfg.c', + 'libavutil/log.c', + 'libavutil/log2_tab.c', + 'libavutil/mathematics.c', + 'libavutil/md5.c', + 'libavutil/mem.c', + 'libavutil/opt.c', + 'libavutil/parseutils.c', + 'libavutil/pixdesc.c', + 'libavutil/pixelutils.c', + 'libavutil/random_seed.c', + 'libavutil/rational.c', + 'libavutil/reverse.c', + 'libavutil/samplefmt.c', + 'libavutil/sha.c', + 'libavutil/stereo3d.c', + 'libavutil/tea.c', + 'libavutil/threadmessage.c', + 'libavutil/time.c', + 'libavutil/timecode.c', + 'libavutil/twofish.c', + 'libavutil/utils.c', + ], + }], # (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mips64el" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "android" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and arm_neon == 1 and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "arm64" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "ia32" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "mipsel" and ffmpeg_branding == "ChromiumOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromeOS") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "linux" and target_arch == "x64" and ffmpeg_branding == "ChromiumOS") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "mac" and target_arch == "x64" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "ia32" and ffmpeg_branding == "Chromium") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chrome") or (OS == "win" and target_arch == "x64" and ffmpeg_branding == "Chromium") + ], # conditions + }, +}