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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
(...skipping 4421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4432 | 4432 |
4433 sources = [ | 4433 sources = [ |
4434 "password_manager/password_manager_test_base.cc", | 4434 "password_manager/password_manager_test_base.cc", |
4435 "password_manager/password_manager_test_base.h", | 4435 "password_manager/password_manager_test_base.h", |
4436 "signin/token_revoker_test_utils.cc", | 4436 "signin/token_revoker_test_utils.cc", |
4437 "signin/token_revoker_test_utils.h", | 4437 "signin/token_revoker_test_utils.h", |
4438 "ui/webui/signin/login_ui_test_utils.cc", | 4438 "ui/webui/signin/login_ui_test_utils.cc", |
4439 "ui/webui/signin/login_ui_test_utils.h", | 4439 "ui/webui/signin/login_ui_test_utils.h", |
4440 ] | 4440 ] |
4441 | 4441 |
| 4442 if (!is_android) { |
| 4443 sources += [ |
| 4444 "ui/webui/web_ui_test_handler.cc", |
| 4445 "ui/webui/web_ui_test_handler.h", |
| 4446 ] |
| 4447 } |
| 4448 |
4442 configs += [ "//build/config:precompiled_headers" ] | 4449 configs += [ "//build/config:precompiled_headers" ] |
4443 | 4450 |
4444 deps = [ | 4451 deps = [ |
4445 "//components/metrics:test_support", | 4452 "//components/metrics:test_support", |
4446 "//components/password_manager/content/common:mojo_interfaces", | 4453 "//components/password_manager/content/common:mojo_interfaces", |
4447 "//components/password_manager/core/browser:test_support", | 4454 "//components/password_manager/core/browser:test_support", |
4448 "//components/translate/content/common", | 4455 "//components/translate/content/common", |
4449 "//skia", | 4456 "//skia", |
4450 "//testing/gtest", | 4457 "//testing/gtest", |
4451 ] | 4458 ] |
(...skipping 25 matching lines...) Expand all Loading... |
4477 "media/pepper_cdm_test_constants.cc", | 4484 "media/pepper_cdm_test_constants.cc", |
4478 "media/pepper_cdm_test_constants.h", | 4485 "media/pepper_cdm_test_constants.h", |
4479 ] | 4486 ] |
4480 } | 4487 } |
4481 } | 4488 } |
4482 | 4489 |
4483 service_manifest("preferences_manifest") { | 4490 service_manifest("preferences_manifest") { |
4484 name = "preferences" | 4491 name = "preferences" |
4485 source = "prefs/preferences_manifest.json" | 4492 source = "prefs/preferences_manifest.json" |
4486 } | 4493 } |
OLD | NEW |