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

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

Issue 2755973003: DevTools: android shouldn't depend on devtools frontend (Closed)
Patch Set: fix Created 3 years, 9 months 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 "//third_party/WebKit/public:resources", 442 "//third_party/WebKit/public:resources",
443 "//ui/resources", 443 "//ui/resources",
444 "//ui/strings", 444 "//ui/strings",
445 ] 445 ]
446 446
447 if (toolkit_views) { 447 if (toolkit_views) {
448 deps += [ "//ui/views/resources" ] 448 deps += [ "//ui/views/resources" ]
449 sources += 449 sources +=
450 [ "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak" ] 450 [ "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak" ]
451 } 451 }
452 452 if (!is_android) {
453 sources += [ "$root_gen_dir/content/browser/devtools/devtools_resources.pak" ] 453 sources +=
454 deps += [ "//content/browser/devtools:resources" ] 454 [ "$root_gen_dir/content/browser/devtools/devtools_resources.pak" ]
455 deps += [ "//content/browser/devtools:resources" ]
456 }
455 output = "$root_out_dir/content_shell.pak" 457 output = "$root_out_dir/content_shell.pak"
456 } 458 }
457 459
458 if (is_android) { 460 if (is_android) {
459 group("content_shell") { 461 group("content_shell") {
460 testonly = true 462 testonly = true
461 deps = [ 463 deps = [
462 "//content/shell/android:content_shell_apk", 464 "//content/shell/android:content_shell_apk",
463 ] 465 ]
464 } 466 }
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 data_deps += [ 802 data_deps += [
801 "//breakpad:dump_syms", 803 "//breakpad:dump_syms",
802 "//breakpad:microdump_stackwalk", 804 "//breakpad:microdump_stackwalk",
803 "//breakpad:minidump_dump", 805 "//breakpad:minidump_dump",
804 "//breakpad:minidump_stackwalk", 806 "//breakpad:minidump_stackwalk",
805 "//breakpad:symupload", 807 "//breakpad:symupload",
806 "//tools/android/forwarder2", 808 "//tools/android/forwarder2",
807 ] 809 ]
808 } 810 }
809 } 811 }
OLDNEW
« no previous file with comments | « content/public/browser/devtools_frontend_host.h ('k') | content/shell/browser/shell_devtools_frontend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698