Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Unified Diff: components/crx_file/BUILD.gn

Issue 481433005: Extensions: Move id_util functions to crx_file component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update GN build Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/crx_file/BUILD.gn
diff --git a/components/auto_login_parser/BUILD.gn b/components/crx_file/BUILD.gn
similarity index 64%
copy from components/auto_login_parser/BUILD.gn
copy to components/crx_file/BUILD.gn
index af92f0fa5483d43264361ea87dbaf59e2f9ac945..828a47fcbede60b063ea4f18aabc3aa386040cd0 100644
--- a/components/auto_login_parser/BUILD.gn
+++ b/components/crx_file/BUILD.gn
@@ -2,25 +2,28 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("auto_login_parser") {
+source_set("crx_file") {
sources = [
- "auto_login_parser.cc",
- "auto_login_parser.h",
+ "constants.h",
+ "crx_file.cc",
+ "crx_file.h",
+ "id_util.cc",
+ "id_util.h",
]
deps = [
"//base",
- "//net",
]
}
source_set("unit_tests") {
sources = [
- "auto_login_parser_unittest.cc",
+ "id_util_unittest.cc",
]
deps = [
- ":auto_login_parser",
+ ":crx_file",
"//testing/gtest",
]
}
+

Powered by Google App Engine
This is Rietveld 408576698