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

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

Issue 2416403002: Reland of Android: support multiple displays on C++ side (Closed)
Patch Set: Update native side only after jni init Created 4 years, 1 month 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
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/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/console_app.gni") 8 import("//build/config/win/console_app.gni")
9 import("//build/config/win/manifest.gni") 9 import("//build/config/win/manifest.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 # Some tests rely on this tool at runtime. Note: it might be better if 301 # Some tests rely on this tool at runtime. Note: it might be better if
302 # the tests that needed it had this as a dep instead of adding it here. 302 # the tests that needed it had this as a dep instead of adding it here.
303 data_deps = [ 303 data_deps = [
304 "//tools/xdisplaycheck", 304 "//tools/xdisplaycheck",
305 ] 305 ]
306 306
307 deps += [ "//ui/events/devices/x11" ] 307 deps += [ "//ui/events/devices/x11" ]
308 } 308 }
309 309
310 if (is_android) { 310 if (is_android) {
311 deps += [ "//content/shell/android:content_shell_jni_headers" ] 311 deps += [
312 "//content/shell/android:content_shell_jni_headers",
313 "//ui/android:android",
314 ]
312 } 315 }
313 316
314 if (is_posix && !is_mac) { 317 if (is_posix && !is_mac) {
315 deps += [ 318 deps += [
316 "//components/crash/content/app", 319 "//components/crash/content/app",
317 "//components/crash/content/browser", 320 "//components/crash/content/browser",
318 ] 321 ]
319 } 322 }
320 323
321 if (use_aura) { 324 if (use_aura) {
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 "{{bundle_resources_dir}}/{{source_file_part}}", 745 "{{bundle_resources_dir}}/{{source_file_part}}",
743 ] 746 ]
744 } 747 }
745 } 748 }
746 749
747 mojom("mojo_bindings") { 750 mojom("mojo_bindings") {
748 sources = [ 751 sources = [
749 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", 752 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom",
750 ] 753 ]
751 } 754 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698