Chromium Code Reviews| Index: components/auto_login_parser/BUILD.gn |
| diff --git a/components/auto_login_parser/BUILD.gn b/components/auto_login_parser/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6362bac450dc070464c00a8d5fbafb1db7a57cc5 |
| --- /dev/null |
| +++ b/components/auto_login_parser/BUILD.gn |
| @@ -0,0 +1,15 @@ |
| +# Copyright 2014 The Chromium Authors. All rights reserved. |
| +# 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") { |
| + deps = [ |
| + "//base", |
| + "//net", |
| + ] |
| + |
| + sources = [ |
|
brettw
2014/07/11 20:09:10
Put this first, deps second.
|
| + "auto_login_parser.cc", |
| + "auto_login_parser.h", |
| + ] |
| +} |