Chromium Code Reviews| Index: services/authentication/BUILD.gn |
| diff --git a/services/authentication/BUILD.gn b/services/authentication/BUILD.gn |
| index 2b8052cac990078220ea74badca7be684f866a60..798375a9e3290fb94cdd1b625c7979e795487e55 100644 |
| --- a/services/authentication/BUILD.gn |
| +++ b/services/authentication/BUILD.gn |
| @@ -38,16 +38,55 @@ if (is_android) { |
| mojo_native_application("authentication") { |
| sources = [ |
| - "dummy_authentication_app.cc", |
| + # "dummy_authentication_app.cc", |
|
viettrungluu
2015/12/18 20:59:49
delete?
ukode
2016/01/06 23:52:59
Done.
|
| + "accounts_db_manager.cc", |
| + "accounts_db_manager.h", |
| + "auth_data.cc", |
| + "auth_data.h", |
| + "google_authentication_impl.cc", |
| + "google_authentication_impl.h", |
| + "main.cc", |
| ] |
| deps = [ |
| + "//base", |
| "//mojo/common", |
| + "//mojo/data_pipe_utils", |
| "//mojo/public/cpp/application", |
| "//mojo/public/cpp/application:standalone", |
|
viettrungluu
2015/12/18 20:59:49
If you're going to use //base, *probably* you shou
ukode
2016/01/06 23:52:59
Done.
|
| "//mojo/public/cpp/bindings", |
| + "//mojo/public/cpp/bindings:callback", |
| "//mojo/public/cpp/system", |
| "//mojo/services/authentication/interfaces", |
| + "//mojo/services/network/interfaces", |
| + "//mojo/services/files/interfaces", |
| + ] |
| + } |
| + |
| + mojo_native_application("apptests") { |
| + output_name = "authentication_apptests" |
| + testonly = true |
| + |
| + sources = [ |
| + "accounts_db_manager.cc", |
| + "accounts_db_manager.h", |
| + "accounts_db_manager_unittest.cc", |
| + "auth_data.cc", |
| + "auth_data.h", |
| + "auth_data_unittest.cc", |
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + "//mojo/application", |
| + "//mojo/application:test_support", |
| + "//mojo/public/cpp/bindings", |
| + "//mojo/services/files/interfaces", |
| + "//testing/gtest:gtest", |
| + ] |
| + |
| + data_deps = [ |
| + ":authentication($default_toolchain)", |
| ] |
| } |
| } |