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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 sources += [ | 385 sources += [ |
386 "compositor/mus_browser_compositor_output_surface.cc", | 386 "compositor/mus_browser_compositor_output_surface.cc", |
387 "compositor/mus_browser_compositor_output_surface.h", | 387 "compositor/mus_browser_compositor_output_surface.h", |
388 "compositor/software_output_device_mus.cc", | 388 "compositor/software_output_device_mus.cc", |
389 "compositor/software_output_device_mus.h", | 389 "compositor/software_output_device_mus.h", |
390 "renderer_host/render_widget_host_view_mus.cc", | 390 "renderer_host/render_widget_host_view_mus.cc", |
391 "renderer_host/render_widget_host_view_mus.h", | 391 "renderer_host/render_widget_host_view_mus.h", |
392 "web_contents/web_contents_view_mus.cc", | 392 "web_contents/web_contents_view_mus.cc", |
393 "web_contents/web_contents_view_mus.h", | 393 "web_contents/web_contents_view_mus.h", |
394 ] | 394 ] |
395 if (toolkit_views) { | |
396 defines += [ "MOJO_RUNNER_CLIENT" ] | |
397 } | |
398 } else { # Not aura. | 395 } else { # Not aura. |
399 sources -= [ | 396 sources -= [ |
400 "media/capture/cursor_renderer_aura.cc", | 397 "media/capture/cursor_renderer_aura.cc", |
401 "media/capture/cursor_renderer_aura.h", | 398 "media/capture/cursor_renderer_aura.h", |
402 "media/capture/window_activity_tracker_aura.cc", | 399 "media/capture/window_activity_tracker_aura.cc", |
403 "media/capture/window_activity_tracker_aura.h", | 400 "media/capture/window_activity_tracker_aura.h", |
404 "renderer_host/compositor_resize_lock_aura.cc", | 401 "renderer_host/compositor_resize_lock_aura.cc", |
405 "renderer_host/compositor_resize_lock_aura.h", | 402 "renderer_host/compositor_resize_lock_aura.h", |
406 "renderer_host/input/synthetic_gesture_target_aura.cc", | 403 "renderer_host/input/synthetic_gesture_target_aura.cc", |
407 "renderer_host/input/synthetic_gesture_target_aura.h", | 404 "renderer_host/input/synthetic_gesture_target_aura.h", |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 if (!is_component_build) { | 510 if (!is_component_build) { |
514 public_deps = [ | 511 public_deps = [ |
515 ":browser", | 512 ":browser", |
516 ] | 513 ] |
517 } else { | 514 } else { |
518 public_deps = [ | 515 public_deps = [ |
519 "//third_party/leveldatabase", | 516 "//third_party/leveldatabase", |
520 ] | 517 ] |
521 } | 518 } |
522 } | 519 } |
OLD | NEW |