| 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/locales.gni") | 6 import("//build/config/locales.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//chrome/chrome_repack_locales.gni") | 8 import("//chrome/chrome_repack_locales.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 | 10 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 } else { # Non-Mac. | 136 } else { # Non-Mac. |
| 137 deps += [ | 137 deps += [ |
| 138 ":packed_extra_resources", | 138 ":packed_extra_resources", |
| 139 ":packed_resources", | 139 ":packed_resources", |
| 140 "//components/startup_metric_utils", | 140 "//components/startup_metric_utils", |
| 141 | 141 |
| 142 # Precompiled plugins that need to get copied to the output directory. | 142 # Precompiled plugins that need to get copied to the output directory. |
| 143 # On Mac, internal plugins go inside the framework, so these | 143 # On Mac, internal plugins go inside the framework, so these |
| 144 # dependencies are on chrome.dll. | 144 # dependencies are on chrome.dll. |
| 145 "//third_party/adobe/flash:flapper_binaries", | 145 "//third_party/adobe/flash:flapper_binaries", |
| 146 "//third_party/widevine/cdm:adapter", | 146 "//third_party/widevine/cdm:widevinecdmadapter", |
| 147 ] | 147 ] |
| 148 # TODO(GYP) some stuff from GYP including chrome_multiple_dll. | 148 # TODO(GYP) some stuff from GYP including chrome_multiple_dll. |
| 149 } | 149 } |
| 150 | 150 |
| 151 if (is_linux && enable_plugins) { | 151 if (is_linux && enable_plugins) { |
| 152 deps += [ "//pdf" ] | 152 deps += [ "//pdf" ] |
| 153 } | 153 } |
| 154 } | 154 } |
| 155 } # !is_android | 155 } # !is_android |
| 156 | 156 |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 | 742 |
| 743 args = [ | 743 args = [ |
| 744 rebase_path(infile, root_build_dir), | 744 rebase_path(infile, root_build_dir), |
| 745 rebase_path(outfile, root_build_dir), | 745 rebase_path(outfile, root_build_dir), |
| 746 "-e s/@@NAME@@/$name/", | 746 "-e s/@@NAME@@/$name/", |
| 747 "-e s/@@FILENAME@@/$filename/", | 747 "-e s/@@FILENAME@@/$filename/", |
| 748 "-e s/@@CONFDIR@@/$confdir/", | 748 "-e s/@@CONFDIR@@/$confdir/", |
| 749 ] | 749 ] |
| 750 } | 750 } |
| 751 } | 751 } |
| OLD | NEW |