| 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/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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |