| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 | 6 |
| 7 group("extensions") { | 7 group("extensions") { |
| 8 deps = [ | 8 deps = [ |
| 9 ":colorenhancer", | 9 ":colorenhancer", |
| 10 ] | 10 ] |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "colorenhancer/src/common.js", | 87 "colorenhancer/src/common.js", |
| 88 "colorenhancer/src/cvd.js", | 88 "colorenhancer/src/cvd.js", |
| 89 "colorenhancer/src/popup.html", | 89 "colorenhancer/src/popup.html", |
| 90 "colorenhancer/src/popup.js", | 90 "colorenhancer/src/popup.js", |
| 91 "colorenhancer/src/storage.js", | 91 "colorenhancer/src/storage.js", |
| 92 "colorenhancer/res/cvd-128.png", | 92 "colorenhancer/res/cvd-128.png", |
| 93 "colorenhancer/res/cvd-16.png", | 93 "colorenhancer/res/cvd-16.png", |
| 94 "colorenhancer/res/cvd-19.png", | 94 "colorenhancer/res/cvd-19.png", |
| 95 "colorenhancer/res/cvd-38.png", | 95 "colorenhancer/res/cvd-38.png", |
| 96 "colorenhancer/res/cvd-48.png", | 96 "colorenhancer/res/cvd-48.png", |
| 97 "colorenhancer/res/cvd.css", | |
| 98 "colorenhancer/res/setup.css", | 97 "colorenhancer/res/setup.css", |
| 99 ] | 98 ] |
| 100 | 99 |
| 101 copy("colorenhancer_copy") { | 100 copy("colorenhancer_copy") { |
| 102 sources = colorenhancer_files | 101 sources = colorenhancer_files |
| 103 outputs = [ | 102 outputs = [ |
| 104 "$root_out_dir/{{source_target_relative}}", | 103 "$root_out_dir/{{source_target_relative}}", |
| 105 ] | 104 ] |
| 106 } | 105 } |
| OLD | NEW |