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 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1026 "ssl/ssl_client_auth_requestor_mock.cc", | 1027 "ssl/ssl_client_auth_requestor_mock.cc", |
1027 "ssl/ssl_client_auth_requestor_mock.h", | 1028 "ssl/ssl_client_auth_requestor_mock.h", |
1028 "sync/profile_sync_components_factory_mock.cc", | 1029 "sync/profile_sync_components_factory_mock.cc", |
1029 "sync/profile_sync_components_factory_mock.h", | 1030 "sync/profile_sync_components_factory_mock.h", |
1030 "sync/profile_sync_service_mock.cc", | 1031 "sync/profile_sync_service_mock.cc", |
1031 "sync/profile_sync_service_mock.h", | 1032 "sync/profile_sync_service_mock.h", |
1032 "ui/webui/signin/login_ui_test_utils.cc", | 1033 "ui/webui/signin/login_ui_test_utils.cc", |
1033 "ui/webui/signin/login_ui_test_utils.h", | 1034 "ui/webui/signin/login_ui_test_utils.h", |
1034 ] | 1035 ] |
1035 | 1036 |
| 1037 configs += [ "//build/config:precompiled_headers" ] |
| 1038 |
1036 public_deps = [ | 1039 public_deps = [ |
1037 ":browser", | 1040 ":browser", |
1038 "//chrome/browser/ui:test_support", | 1041 "//chrome/browser/ui:test_support", |
1039 ] | 1042 ] |
1040 deps = [ | 1043 deps = [ |
1041 "//base:prefs_test_support", | 1044 "//base:prefs_test_support", |
1042 "//chrome/browser", | 1045 "//chrome/browser", |
1043 "//chrome/common", | 1046 "//chrome/common", |
1044 "//chrome/common/safe_browsing:proto", | 1047 "//chrome/common/safe_browsing:proto", |
1045 "//components/invalidation/impl", | 1048 "//components/invalidation/impl", |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1204 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1207 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1205 deps = [ | 1208 deps = [ |
1206 "//components/google/core/browser", | 1209 "//components/google/core/browser", |
1207 "//components/omnibox/browser", | 1210 "//components/omnibox/browser", |
1208 "//components/rlz", | 1211 "//components/rlz", |
1209 "//components/search_engines", | 1212 "//components/search_engines", |
1210 "//rlz:rlz_lib", | 1213 "//rlz:rlz_lib", |
1211 ] | 1214 ] |
1212 } | 1215 } |
1213 } | 1216 } |
OLD | NEW |