| OLD | NEW |
| 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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 # because the latter is not built on Android, whereas these files are | 459 # because the latter is not built on Android, whereas these files are |
| 460 # needed on all platforms. | 460 # needed on all platforms. |
| 461 "compositor/surface_utils.cc", | 461 "compositor/surface_utils.cc", |
| 462 "compositor/surface_utils.h", | 462 "compositor/surface_utils.h", |
| 463 "devtools/browser_devtools_agent_host.cc", | 463 "devtools/browser_devtools_agent_host.cc", |
| 464 "devtools/browser_devtools_agent_host.h", | 464 "devtools/browser_devtools_agent_host.h", |
| 465 "devtools/devtools_agent_host_impl.cc", | 465 "devtools/devtools_agent_host_impl.cc", |
| 466 "devtools/devtools_agent_host_impl.h", | 466 "devtools/devtools_agent_host_impl.h", |
| 467 "devtools/devtools_frame_trace_recorder.cc", | 467 "devtools/devtools_frame_trace_recorder.cc", |
| 468 "devtools/devtools_frame_trace_recorder.h", | 468 "devtools/devtools_frame_trace_recorder.h", |
| 469 "devtools/devtools_frontend_host_impl.cc", | |
| 470 "devtools/devtools_frontend_host_impl.h", | |
| 471 "devtools/devtools_http_handler.cc", | 469 "devtools/devtools_http_handler.cc", |
| 472 "devtools/devtools_http_handler.h", | 470 "devtools/devtools_http_handler.h", |
| 473 "devtools/devtools_io_context.cc", | 471 "devtools/devtools_io_context.cc", |
| 474 "devtools/devtools_io_context.h", | 472 "devtools/devtools_io_context.h", |
| 475 "devtools/devtools_manager.cc", | 473 "devtools/devtools_manager.cc", |
| 476 "devtools/devtools_manager.h", | 474 "devtools/devtools_manager.h", |
| 477 "devtools/devtools_session.cc", | 475 "devtools/devtools_session.cc", |
| 478 "devtools/devtools_session.h", | 476 "devtools/devtools_session.h", |
| 479 "devtools/forwarding_agent_host.cc", | 477 "devtools/forwarding_agent_host.cc", |
| 480 "devtools/forwarding_agent_host.h", | 478 "devtools/forwarding_agent_host.h", |
| (...skipping 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1856 "//ui/android", | 1854 "//ui/android", |
| 1857 ] | 1855 ] |
| 1858 defines += [ | 1856 defines += [ |
| 1859 "APPCACHE_USE_SIMPLE_CACHE", | 1857 "APPCACHE_USE_SIMPLE_CACHE", |
| 1860 "ENABLE_SCREEN_CAPTURE=1", | 1858 "ENABLE_SCREEN_CAPTURE=1", |
| 1861 ] | 1859 ] |
| 1862 libs += [ "jnigraphics" ] | 1860 libs += [ "jnigraphics" ] |
| 1863 } else { | 1861 } else { |
| 1864 # Not Android. | 1862 # Not Android. |
| 1865 sources += [ | 1863 sources += [ |
| 1864 # Devtools frontend not included in Android |
| 1865 "devtools/devtools_frontend_host_impl.cc", |
| 1866 "devtools/devtools_frontend_host_impl.h", |
| 1867 |
| 1866 # Most speech code is non-Android. | 1868 # Most speech code is non-Android. |
| 1867 "speech/audio_buffer.cc", | 1869 "speech/audio_buffer.cc", |
| 1868 "speech/audio_buffer.h", | 1870 "speech/audio_buffer.h", |
| 1869 "speech/audio_encoder.cc", | 1871 "speech/audio_encoder.cc", |
| 1870 "speech/audio_encoder.h", | 1872 "speech/audio_encoder.h", |
| 1871 "speech/chunked_byte_buffer.cc", | 1873 "speech/chunked_byte_buffer.cc", |
| 1872 "speech/chunked_byte_buffer.h", | 1874 "speech/chunked_byte_buffer.h", |
| 1873 "speech/endpointer/endpointer.cc", | 1875 "speech/endpointer/endpointer.cc", |
| 1874 "speech/endpointer/endpointer.h", | 1876 "speech/endpointer/endpointer.h", |
| 1875 "speech/endpointer/energy_endpointer.cc", | 1877 "speech/endpointer/energy_endpointer.cc", |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2055 if (!is_component_build) { | 2057 if (!is_component_build) { |
| 2056 public_deps = [ | 2058 public_deps = [ |
| 2057 ":browser", | 2059 ":browser", |
| 2058 ] | 2060 ] |
| 2059 } else { | 2061 } else { |
| 2060 public_deps = [ | 2062 public_deps = [ |
| 2061 "//third_party/leveldatabase", | 2063 "//third_party/leveldatabase", |
| 2062 ] | 2064 ] |
| 2063 } | 2065 } |
| 2064 } | 2066 } |
| OLD | NEW |