| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/sysroot.gni") | 8 import("//build/config/sysroot.gni") |
| 9 import("//build/util/process_version.gni") | 9 import("//build/util/process_version.gni") |
| 10 import("//build/util/version.gni") | 10 import("//build/util/version.gni") |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 outputs = [ | 119 outputs = [ |
| 120 "$root_out_dir/installer/debian/{{source_file_part}}", | 120 "$root_out_dir/installer/debian/{{source_file_part}}", |
| 121 ] | 121 ] |
| 122 } | 122 } |
| 123 | 123 |
| 124 copy("theme_files") { | 124 copy("theme_files") { |
| 125 visibility = [ ":*" ] | 125 visibility = [ ":*" ] |
| 126 sources = [ | 126 sources = [ |
| 127 "$branding_dir/BRANDING", | 127 "$branding_dir/BRANDING", |
| 128 "$branding_dir/linux/product_logo_32.xpm", | 128 "$branding_dir/linux/product_logo_32.xpm", |
| 129 "$branding_dir/linux/product_symbolic_logo_16.symbolic.png", |
| 130 "$branding_dir/linux/product_symbolic_logo_32.symbolic.png", |
| 129 "$branding_dir/product_logo_128.png", | 131 "$branding_dir/product_logo_128.png", |
| 130 "$branding_dir/product_logo_22.png", | 132 "$branding_dir/product_logo_22.png", |
| 131 "$branding_dir/product_logo_24.png", | 133 "$branding_dir/product_logo_24.png", |
| 132 "$branding_dir/product_logo_256.png", | 134 "$branding_dir/product_logo_256.png", |
| 133 "$branding_dir/product_logo_48.png", | 135 "$branding_dir/product_logo_48.png", |
| 134 "$branding_dir/product_logo_64.png", | 136 "$branding_dir/product_logo_64.png", |
| 135 "$branding_dir_100/product_logo_16.png", | 137 "$branding_dir_100/product_logo_16.png", |
| 136 "$branding_dir_100/product_logo_32.png", | 138 "$branding_dir_100/product_logo_32.png", |
| 137 ] | 139 ] |
| 138 outputs = [ | 140 outputs = [ |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 # Other packages that we support that aren't included in the default "linux" | 363 # Other packages that we support that aren't included in the default "linux" |
| 362 # target. | 364 # target. |
| 363 linux_package("trunk") { | 365 linux_package("trunk") { |
| 364 channel = "trunk" | 366 channel = "trunk" |
| 365 } | 367 } |
| 366 if (is_asan) { | 368 if (is_asan) { |
| 367 linux_package("asan") { | 369 linux_package("asan") { |
| 368 channel = "asan" | 370 channel = "asan" |
| 369 } | 371 } |
| 370 } | 372 } |
| OLD | NEW |