| 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("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "//content/public/common:common_sources", | 57 "//content/public/common:common_sources", |
| 58 "//crypto", | 58 "//crypto", |
| 59 "//device/battery", | 59 "//device/battery", |
| 60 "//device/battery:mojo_bindings", | 60 "//device/battery:mojo_bindings", |
| 61 "//device/bluetooth", | 61 "//device/bluetooth", |
| 62 "//device/gamepad", | 62 "//device/gamepad", |
| 63 "//device/generic_sensor", | 63 "//device/generic_sensor", |
| 64 "//device/geolocation", | 64 "//device/geolocation", |
| 65 "//device/geolocation/public/interfaces", | 65 "//device/geolocation/public/interfaces", |
| 66 "//device/nfc:mojo_bindings", | 66 "//device/nfc:mojo_bindings", |
| 67 "//device/power_monitor:power_monitor_message_broadcaster", |
| 67 "//device/power_save_blocker", | 68 "//device/power_save_blocker", |
| 68 "//device/sensors/public/cpp", | 69 "//device/sensors/public/cpp", |
| 69 "//device/time_zone_monitor", | 70 "//device/time_zone_monitor", |
| 70 "//device/vibration", | 71 "//device/vibration", |
| 71 "//device/wake_lock", | 72 "//device/wake_lock", |
| 72 "//gin", | 73 "//gin", |
| 73 "//google_apis", | 74 "//google_apis", |
| 74 "//gpu", | 75 "//gpu", |
| 75 "//gpu/command_buffer/client:gles2_implementation", | 76 "//gpu/command_buffer/client:gles2_implementation", |
| 76 "//gpu/command_buffer/client:gles2_interface", | 77 "//gpu/command_buffer/client:gles2_interface", |
| (...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 "notifications/page_notification_delegate.cc", | 914 "notifications/page_notification_delegate.cc", |
| 914 "notifications/page_notification_delegate.h", | 915 "notifications/page_notification_delegate.h", |
| 915 "notifications/platform_notification_context_impl.cc", | 916 "notifications/platform_notification_context_impl.cc", |
| 916 "notifications/platform_notification_context_impl.h", | 917 "notifications/platform_notification_context_impl.h", |
| 917 "notifications/type_converters.cc", | 918 "notifications/type_converters.cc", |
| 918 "notifications/type_converters.h", | 919 "notifications/type_converters.h", |
| 919 "permissions/permission_service_context.cc", | 920 "permissions/permission_service_context.cc", |
| 920 "permissions/permission_service_context.h", | 921 "permissions/permission_service_context.h", |
| 921 "permissions/permission_service_impl.cc", | 922 "permissions/permission_service_impl.cc", |
| 922 "permissions/permission_service_impl.h", | 923 "permissions/permission_service_impl.h", |
| 923 "power_monitor_message_broadcaster.cc", | |
| 924 "power_monitor_message_broadcaster.h", | |
| 925 "power_usage_monitor_impl.cc", | 924 "power_usage_monitor_impl.cc", |
| 926 "power_usage_monitor_impl.h", | 925 "power_usage_monitor_impl.h", |
| 927 "presentation/presentation_service_impl.cc", | 926 "presentation/presentation_service_impl.cc", |
| 928 "presentation/presentation_service_impl.h", | 927 "presentation/presentation_service_impl.h", |
| 929 "presentation/presentation_type_converters.cc", | 928 "presentation/presentation_type_converters.cc", |
| 930 "presentation/presentation_type_converters.h", | 929 "presentation/presentation_type_converters.h", |
| 931 "profiler_controller_impl.cc", | 930 "profiler_controller_impl.cc", |
| 932 "profiler_controller_impl.h", | 931 "profiler_controller_impl.h", |
| 933 "profiler_message_filter.cc", | 932 "profiler_message_filter.cc", |
| 934 "profiler_message_filter.h", | 933 "profiler_message_filter.h", |
| (...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1941 if (!is_component_build) { | 1940 if (!is_component_build) { |
| 1942 public_deps = [ | 1941 public_deps = [ |
| 1943 ":browser", | 1942 ":browser", |
| 1944 ] | 1943 ] |
| 1945 } else { | 1944 } else { |
| 1946 public_deps = [ | 1945 public_deps = [ |
| 1947 "//third_party/leveldatabase", | 1946 "//third_party/leveldatabase", |
| 1948 ] | 1947 ] |
| 1949 } | 1948 } |
| 1950 } | 1949 } |
| OLD | NEW |