Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 import("//build/config/features.gni") | |
|
Peter Beverloo
2015/10/27 14:35:51
nit: copyright header
| |
| 2 import("//tools/grit/repack.gni") | |
| 3 | |
| 4 repack("pak") { | |
| 5 sources = [ | |
| 6 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak" , | |
| 7 "$root_gen_dir/blink/public/resources/blink_resources.pak", | |
| 8 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", | |
| 9 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", | |
| 10 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", | |
| 11 "$root_gen_dir/content/content_resources.pak", | |
| 12 "$root_gen_dir/net/net_resources.pak", | |
| 13 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | |
| 14 "$root_gen_dir/ui/resources/webui_resources.pak", | |
| 15 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | |
| 16 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | |
| 17 ] | |
| 18 | |
| 19 deps = [ | |
| 20 "//content:resources", | |
| 21 "//content/app/resources", | |
| 22 "//content/app/strings", | |
| 23 "//content/browser/tracing:resources", | |
| 24 "//net:net_resources", | |
| 25 "//third_party/WebKit/public:image_resources", | |
| 26 "//third_party/WebKit/public:resources", | |
| 27 "//ui/resources", | |
| 28 "//ui/strings", | |
| 29 ] | |
| 30 | |
| 31 output = "$root_out_dir/headless.pak" | |
| 32 } | |
| 33 | |
| 34 shared_library("headless") { | |
| 35 sources = [ | |
| 36 "headless_main_delegate.cc", | |
| 37 "headless_main_delegate.h", | |
| 38 ] | |
| 39 | |
| 40 defines = [ "HEADLESS_IMPLEMENTATION" ] | |
| 41 | |
| 42 deps = [ | |
| 43 "//base", | |
| 44 "//build/config/sanitizers:deps", | |
| 45 "//content/public/common", | |
| 46 "//ui/base", | |
| 47 ":pak", | |
| 48 ] | |
| 49 } | |
| OLD | NEW |