| 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("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 10 | 10 |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] | 382 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] |
| 383 deps += [ | 383 deps += [ |
| 384 "//chromeos", | 384 "//chromeos", |
| 385 "//chromeos:power_manager_proto", | 385 "//chromeos:power_manager_proto", |
| 386 ] | 386 ] |
| 387 } | 387 } |
| 388 | 388 |
| 389 if (use_aura) { | 389 if (use_aura) { |
| 390 deps += [ | 390 deps += [ |
| 391 "//components/bitmap_uploader", | 391 "//components/bitmap_uploader", |
| 392 "//components/mus/common:mus_common", |
| 392 "//components/mus/public/cpp", | 393 "//components/mus/public/cpp", |
| 393 "//components/mus/public/interfaces", | 394 "//components/mus/public/interfaces", |
| 394 "//ui/aura", | 395 "//ui/aura", |
| 395 "//ui/aura_extra", | 396 "//ui/aura_extra", |
| 396 "//ui/strings", | 397 "//ui/strings", |
| 397 "//ui/wm", | 398 "//ui/wm", |
| 398 ] | 399 ] |
| 399 sources += [ | 400 sources += [ |
| 400 "compositor/software_output_device_mus.cc", | 401 "compositor/software_output_device_mus.cc", |
| 401 "compositor/software_output_device_mus.h", | 402 "compositor/software_output_device_mus.h", |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 if (!is_component_build) { | 518 if (!is_component_build) { |
| 518 public_deps = [ | 519 public_deps = [ |
| 519 ":browser", | 520 ":browser", |
| 520 ] | 521 ] |
| 521 } else { | 522 } else { |
| 522 public_deps = [ | 523 public_deps = [ |
| 523 "//third_party/leveldatabase", | 524 "//third_party/leveldatabase", |
| 524 ] | 525 ] |
| 525 } | 526 } |
| 526 } | 527 } |
| OLD | NEW |