Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: content/browser/BUILD.gn

Issue 2874833002: Don't compile code for desktop zoom or GuestViews on mobile platforms. (Closed)
Patch Set: Update CastBrowserContext Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 "gpu/shader_cache_factory.h", 751 "gpu/shader_cache_factory.h",
752 "histogram_controller.cc", 752 "histogram_controller.cc",
753 "histogram_controller.h", 753 "histogram_controller.h",
754 "histogram_internals_request_job.cc", 754 "histogram_internals_request_job.cc",
755 "histogram_internals_request_job.h", 755 "histogram_internals_request_job.h",
756 "histogram_message_filter.cc", 756 "histogram_message_filter.cc",
757 "histogram_message_filter.h", 757 "histogram_message_filter.h",
758 "histogram_subscriber.h", 758 "histogram_subscriber.h",
759 "histogram_synchronizer.cc", 759 "histogram_synchronizer.cc",
760 "histogram_synchronizer.h", 760 "histogram_synchronizer.h",
761 "host_zoom_level_context.cc",
762 "host_zoom_level_context.h",
763 "host_zoom_map_impl.cc",
764 "host_zoom_map_impl.h",
765 "host_zoom_map_observer.cc",
766 "host_zoom_map_observer.h",
767 "image_capture/image_capture_impl.cc", 761 "image_capture/image_capture_impl.cc",
768 "image_capture/image_capture_impl.h", 762 "image_capture/image_capture_impl.h",
769 "indexed_db/cursor_impl.cc", 763 "indexed_db/cursor_impl.cc",
770 "indexed_db/cursor_impl.h", 764 "indexed_db/cursor_impl.h",
771 "indexed_db/database_impl.cc", 765 "indexed_db/database_impl.cc",
772 "indexed_db/database_impl.h", 766 "indexed_db/database_impl.h",
773 "indexed_db/indexed_db.h", 767 "indexed_db/indexed_db.h",
774 "indexed_db/indexed_db_active_blob_registry.cc", 768 "indexed_db/indexed_db_active_blob_registry.cc",
775 "indexed_db/indexed_db_active_blob_registry.h", 769 "indexed_db/indexed_db_active_blob_registry.h",
776 "indexed_db/indexed_db_backing_store.cc", 770 "indexed_db/indexed_db_backing_store.cc",
(...skipping 1163 matching lines...) Expand 10 before | Expand all | Expand 10 after
1940 "APPCACHE_USE_SIMPLE_CACHE", 1934 "APPCACHE_USE_SIMPLE_CACHE",
1941 "ENABLE_SCREEN_CAPTURE=1", 1935 "ENABLE_SCREEN_CAPTURE=1",
1942 ] 1936 ]
1943 libs += [ "jnigraphics" ] 1937 libs += [ "jnigraphics" ]
1944 } else { 1938 } else {
1945 # Not Android. 1939 # Not Android.
1946 sources += [ 1940 sources += [
1947 # Devtools frontend not included in Android 1941 # Devtools frontend not included in Android
1948 "devtools/devtools_frontend_host_impl.cc", 1942 "devtools/devtools_frontend_host_impl.cc",
1949 "devtools/devtools_frontend_host_impl.h", 1943 "devtools/devtools_frontend_host_impl.h",
1944 "host_zoom_level_context.cc",
1945 "host_zoom_level_context.h",
1946 "host_zoom_map_impl.cc",
1947 "host_zoom_map_impl.h",
1948 "host_zoom_map_observer.cc",
1949 "host_zoom_map_observer.h",
1950 1950
1951 # Most speech code is non-Android. 1951 # Most speech code is non-Android.
1952 "speech/audio_buffer.cc", 1952 "speech/audio_buffer.cc",
1953 "speech/audio_buffer.h", 1953 "speech/audio_buffer.h",
1954 "speech/audio_encoder.cc", 1954 "speech/audio_encoder.cc",
1955 "speech/audio_encoder.h", 1955 "speech/audio_encoder.h",
1956 "speech/chunked_byte_buffer.cc", 1956 "speech/chunked_byte_buffer.cc",
1957 "speech/chunked_byte_buffer.h", 1957 "speech/chunked_byte_buffer.h",
1958 "speech/endpointer/endpointer.cc", 1958 "speech/endpointer/endpointer.cc",
1959 "speech/endpointer/endpointer.h", 1959 "speech/endpointer/endpointer.h",
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
2132 if (!is_component_build) { 2132 if (!is_component_build) {
2133 public_deps = [ 2133 public_deps = [
2134 ":browser", 2134 ":browser",
2135 ] 2135 ]
2136 } else { 2136 } else {
2137 public_deps = [ 2137 public_deps = [
2138 "//third_party/leveldatabase", 2138 "//third_party/leveldatabase",
2139 ] 2139 ]
2140 } 2140 }
2141 } 2141 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698