| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 "cocoa/system_hotkey_helper_mac.h", | 350 "cocoa/system_hotkey_helper_mac.h", |
| 351 "cocoa/system_hotkey_helper_mac.mm", | 351 "cocoa/system_hotkey_helper_mac.mm", |
| 352 "cocoa/system_hotkey_map.h", | 352 "cocoa/system_hotkey_map.h", |
| 353 "cocoa/system_hotkey_map.mm", | 353 "cocoa/system_hotkey_map.mm", |
| 354 | 354 |
| 355 # NOTE: These files are here instead of in compositor_browser_sources | 355 # NOTE: These files are here instead of in compositor_browser_sources |
| 356 # because the latter is not built on Android, whereas these files are | 356 # because the latter is not built on Android, whereas these files are |
| 357 # needed on all platforms. | 357 # needed on all platforms. |
| 358 "compositor/surface_utils.cc", | 358 "compositor/surface_utils.cc", |
| 359 "compositor/surface_utils.h", | 359 "compositor/surface_utils.h", |
| 360 "device_sensors/ambient_light_mac.cc", | |
| 361 "device_sensors/ambient_light_mac.h", | |
| 362 "device_sensors/data_fetcher_shared_memory.h", | 360 "device_sensors/data_fetcher_shared_memory.h", |
| 363 "device_sensors/data_fetcher_shared_memory_android.cc", | 361 "device_sensors/data_fetcher_shared_memory_android.cc", |
| 364 "device_sensors/data_fetcher_shared_memory_base.cc", | 362 "device_sensors/data_fetcher_shared_memory_base.cc", |
| 365 "device_sensors/data_fetcher_shared_memory_base.h", | 363 "device_sensors/data_fetcher_shared_memory_base.h", |
| 366 "device_sensors/data_fetcher_shared_memory_chromeos.cc", | 364 "device_sensors/data_fetcher_shared_memory_chromeos.cc", |
| 367 "device_sensors/data_fetcher_shared_memory_default.cc", | 365 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 368 "device_sensors/data_fetcher_shared_memory_mac.cc", | 366 "device_sensors/data_fetcher_shared_memory_mac.cc", |
| 369 "device_sensors/data_fetcher_shared_memory_win.cc", | 367 "device_sensors/data_fetcher_shared_memory_win.cc", |
| 370 "device_sensors/device_sensor_host.cc", | 368 "device_sensors/device_sensor_host.cc", |
| 371 "device_sensors/device_sensor_host.h", | 369 "device_sensors/device_sensor_host.h", |
| (...skipping 1562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1934 if (!is_component_build) { | 1932 if (!is_component_build) { |
| 1935 public_deps = [ | 1933 public_deps = [ |
| 1936 ":browser", | 1934 ":browser", |
| 1937 ] | 1935 ] |
| 1938 } else { | 1936 } else { |
| 1939 public_deps = [ | 1937 public_deps = [ |
| 1940 "//third_party/leveldatabase", | 1938 "//third_party/leveldatabase", |
| 1941 ] | 1939 ] |
| 1942 } | 1940 } |
| 1943 } | 1941 } |
| OLD | NEW |