Commit fe8398d4 authored by torne's avatar torne Committed by Commit bot

Remove android_webview_build conditions from various places.

Remove various minor android_webview_build references now that we no
longer support that build configuration.

BUG=440793

Review URL: https://codereview.chromium.org/1048863002

Cr-Commit-Position: refs/heads/master@{#324078}
parent 36b90380
...@@ -345,12 +345,10 @@ component("media") { ...@@ -345,12 +345,10 @@ component("media") {
] ]
deps += [ deps += [
"//media/base/android", "//media/base/android",
"//media/base/android:media_java",
"//media/base/android:media_jni_headers", "//media/base/android:media_jni_headers",
"//media/base/android:video_capture_jni_headers", "//media/base/android:video_capture_jni_headers",
] ]
if (!is_android_webview_build) {
deps += [ "//media/base/android:media_java" ]
}
} }
if (current_cpu != "arm" && is_chromeos) { if (current_cpu != "arm" && is_chromeos) {
......
...@@ -713,6 +713,7 @@ ...@@ -713,6 +713,7 @@
['OS=="android"', { ['OS=="android"', {
'dependencies': [ 'dependencies': [
'media_android_jni_headers', 'media_android_jni_headers',
'media_java',
'player_android', 'player_android',
'video_capture_android_jni_headers', 'video_capture_android_jni_headers',
], ],
...@@ -727,13 +728,6 @@ ...@@ -727,13 +728,6 @@
'renderers/default_renderer_factory.cc', 'renderers/default_renderer_factory.cc',
'renderers/default_renderer_factory.h', 'renderers/default_renderer_factory.h',
], ],
'conditions': [
['android_webview_build==0', {
'dependencies': [
'media_java',
],
}],
],
'defines': [ 'defines': [
'DISABLE_USER_INPUT_MONITOR', 'DISABLE_USER_INPUT_MONITOR',
], ],
......
...@@ -507,10 +507,7 @@ component("net") { ...@@ -507,10 +507,7 @@ component("net") {
"base/platform_mime_util_linux.cc", "base/platform_mime_util_linux.cc",
] ]
set_sources_assignment_filter(sources_assignment_filter) set_sources_assignment_filter(sources_assignment_filter)
deps += [ ":net_jni_headers" ]
if (!is_android_webview_build) {
deps += [ ":net_jni_headers" ]
}
} }
if (use_icu_alternatives_on_android) { if (use_icu_alternatives_on_android) {
......
...@@ -368,7 +368,7 @@ ...@@ -368,7 +368,7 @@
], ],
}, },
], ],
['OS=="android" and _toolset=="target" and android_webview_build == 0', { ['OS=="android" and _toolset=="target"', {
'dependencies': [ 'dependencies': [
'net_java', 'net_java',
], ],
......
...@@ -104,13 +104,6 @@ ...@@ -104,13 +104,6 @@
'SK_ARM_HAS_OPTIONAL_NEON', 'SK_ARM_HAS_OPTIONAL_NEON',
], ],
}], }],
# Enable feedback-directed optimisation for skia when building in android.
[ 'android_webview_build == 1', {
'aosp_build_settings': {
'LOCAL_FDO_SUPPORT': 'true',
},
}],
], ],
'variables': { 'variables': {
......
...@@ -164,12 +164,6 @@ ...@@ -164,12 +164,6 @@
'-Wno-pointer-to-int-cast', '-Wno-pointer-to-int-cast',
], ],
}], }],
# Enable feedback-directed optimisation for sqlite when building in android.
['android_webview_build == 1', {
'aosp_build_settings': {
'LOCAL_FDO_SUPPORT': 'true',
},
}],
], ],
}], }],
], ],
......
...@@ -25,14 +25,11 @@ ...@@ -25,14 +25,11 @@
'image_diff_png.cc', 'image_diff_png.cc',
], ],
'conditions': [ 'conditions': [
['OS=="android" and android_webview_build==0', { ['OS=="android"', {
# The Chromium Android port will compare images on host rather # The Chromium Android port will compare images on host rather
# than target (a device or emulator) for performance reasons. # than target (a device or emulator) for performance reasons.
'toolsets': ['host'], 'toolsets': ['host'],
}], }],
['OS=="android" and android_webview_build==1', {
'type': 'none',
}],
], ],
}, },
], ],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment