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

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

Issue 1461243002: [OLD ATTEMPT, DO NOT REVIEW] mustash: Enable connections to mus from the Chrome renderer Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Ben's comments Created 5 years 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
« no previous file with comments | « no previous file | content/browser/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//content/browser/browser.gni") 7 import("//content/browser/browser.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("browser") { 10 source_set("browser") {
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] 416 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ]
417 deps += [ 417 deps += [
418 "//chromeos", 418 "//chromeos",
419 "//chromeos:power_manager_proto", 419 "//chromeos:power_manager_proto",
420 ] 420 ]
421 } 421 }
422 422
423 if (use_aura) { 423 if (use_aura) {
424 deps += [ 424 deps += [
425 "//components/bitmap_uploader", 425 "//components/bitmap_uploader",
426 "//components/mus/public/cpp",
427 "//components/mus/public/interfaces",
426 "//ui/aura", 428 "//ui/aura",
427 "//ui/aura_extra", 429 "//ui/aura_extra",
428 "//ui/strings", 430 "//ui/strings",
429 "//ui/views/mus:for_component", 431 "//ui/views/mus:for_component",
430 "//ui/wm", 432 "//ui/wm",
431 ] 433 ]
432 sources += [ 434 sources += [
433 "compositor/software_output_device_mus.cc", 435 "compositor/software_output_device_mus.cc",
434 "compositor/software_output_device_mus.h", 436 "compositor/software_output_device_mus.h",
437 "mus_util.cc",
438 "mus_util.h",
439 "render_process_connection_listener.cc",
440 "render_process_connection_listener.h",
435 "renderer_host/render_widget_host_view_mus.cc", 441 "renderer_host/render_widget_host_view_mus.cc",
436 "renderer_host/render_widget_host_view_mus.h", 442 "renderer_host/render_widget_host_view_mus.h",
437 "web_contents/web_contents_view_mus.cc", 443 "web_contents/web_contents_view_mus.cc",
438 "web_contents/web_contents_view_mus.h", 444 "web_contents/web_contents_view_mus.h",
439 ] 445 ]
440 defines += [ "MOJO_RUNNER_CLIENT" ] 446 defines += [ "MOJO_RUNNER_CLIENT" ]
441 } else { # Not aura. 447 } else { # Not aura.
442 sources -= [ 448 sources -= [
443 "media/capture/cursor_renderer_aura.cc", 449 "media/capture/cursor_renderer_aura.cc",
444 "media/capture/cursor_renderer_aura.h", 450 "media/capture/cursor_renderer_aura.h",
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 547
542 if (enable_webvr && is_android) { 548 if (enable_webvr && is_android) {
543 sources += [ 549 sources += [
544 "vr/android/cardboard/cardboard_vr_device.cc", 550 "vr/android/cardboard/cardboard_vr_device.cc",
545 "vr/android/cardboard/cardboard_vr_device.h", 551 "vr/android/cardboard/cardboard_vr_device.h",
546 "vr/android/cardboard/cardboard_vr_device_provider.cc", 552 "vr/android/cardboard/cardboard_vr_device_provider.cc",
547 "vr/android/cardboard/cardboard_vr_device_provider.h", 553 "vr/android/cardboard/cardboard_vr_device_provider.h",
548 ] 554 ]
549 } 555 }
550 } 556 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698