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("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
10 | 10 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 # are just itself and common gnome ones we link already, so we can get away | 53 # are just itself and common gnome ones we link already, so we can get away |
54 # with additionally just coding the library name here. | 54 # with additionally just coding the library name here. |
55 config("gnome_keyring_direct") { | 55 config("gnome_keyring_direct") { |
56 libs = [ "gnome-keyring" ] | 56 libs = [ "gnome-keyring" ] |
57 } | 57 } |
58 } | 58 } |
59 | 59 |
60 source_set("browser") { | 60 source_set("browser") { |
61 configs += [ | 61 configs += [ |
62 "//build/config/compiler:wexit_time_destructors", | 62 "//build/config/compiler:wexit_time_destructors", |
| 63 "//build/config:precompiled_headers", |
63 "//third_party/WebKit/public:debug_devtools", | 64 "//third_party/WebKit/public:debug_devtools", |
64 ] | 65 ] |
65 defines = [] | 66 defines = [] |
66 sources = [] | 67 sources = [] |
67 libs = [] | 68 libs = [] |
68 ldflags = [] | 69 ldflags = [] |
69 | 70 |
70 # iOS/non-iOS shared deps. New dependencies should generally be added in the | 71 # iOS/non-iOS shared deps. New dependencies should generally be added in the |
71 # non-iOS deps below. | 72 # non-iOS deps below. |
72 public_deps = [ | 73 public_deps = [ |
(...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1028 "ssl/ssl_client_auth_requestor_mock.cc", | 1029 "ssl/ssl_client_auth_requestor_mock.cc", |
1029 "ssl/ssl_client_auth_requestor_mock.h", | 1030 "ssl/ssl_client_auth_requestor_mock.h", |
1030 "sync/profile_sync_components_factory_mock.cc", | 1031 "sync/profile_sync_components_factory_mock.cc", |
1031 "sync/profile_sync_components_factory_mock.h", | 1032 "sync/profile_sync_components_factory_mock.h", |
1032 "sync/profile_sync_service_mock.cc", | 1033 "sync/profile_sync_service_mock.cc", |
1033 "sync/profile_sync_service_mock.h", | 1034 "sync/profile_sync_service_mock.h", |
1034 "ui/webui/signin/login_ui_test_utils.cc", | 1035 "ui/webui/signin/login_ui_test_utils.cc", |
1035 "ui/webui/signin/login_ui_test_utils.h", | 1036 "ui/webui/signin/login_ui_test_utils.h", |
1036 ] | 1037 ] |
1037 | 1038 |
| 1039 configs += [ "//build/config:precompiled_headers" ] |
| 1040 |
1038 public_deps = [ | 1041 public_deps = [ |
1039 ":browser", | 1042 ":browser", |
1040 "//chrome/browser/ui:test_support", | 1043 "//chrome/browser/ui:test_support", |
1041 ] | 1044 ] |
1042 deps = [ | 1045 deps = [ |
1043 "//base:prefs_test_support", | 1046 "//base:prefs_test_support", |
1044 "//chrome/browser", | 1047 "//chrome/browser", |
1045 "//chrome/common", | 1048 "//chrome/common", |
1046 "//chrome/common/safe_browsing:proto", | 1049 "//chrome/common/safe_browsing:proto", |
1047 "//components/invalidation/impl", | 1050 "//components/invalidation/impl", |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1206 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1209 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1207 deps = [ | 1210 deps = [ |
1208 "//components/google/core/browser", | 1211 "//components/google/core/browser", |
1209 "//components/omnibox/browser", | 1212 "//components/omnibox/browser", |
1210 "//components/rlz", | 1213 "//components/rlz", |
1211 "//components/search_engines", | 1214 "//components/search_engines", |
1212 "//rlz:rlz_lib", | 1215 "//rlz:rlz_lib", |
1213 ] | 1216 ] |
1214 } | 1217 } |
1215 } | 1218 } |
OLD | NEW |