| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 "//ui/gfx", | 174 "//ui/gfx", |
| 175 "//ui/gfx/geometry", | 175 "//ui/gfx/geometry", |
| 176 "//ui/message_center", | 176 "//ui/message_center", |
| 177 "//ui/shell_dialogs", | 177 "//ui/shell_dialogs", |
| 178 "//ui/strings", | 178 "//ui/strings", |
| 179 "//ui/resources", | 179 "//ui/resources", |
| 180 ] | 180 ] |
| 181 | 181 |
| 182 sources += | 182 sources += |
| 183 rebase_path(gypi_values.chrome_browser_undo_sources, ".", "//chrome") | 183 rebase_path(gypi_values.chrome_browser_undo_sources, ".", "//chrome") |
| 184 sources += |
| 185 rebase_path(gypi_values.chrome_browser_task_manager_unconditional_sources, |
| 186 ".", |
| 187 "//chrome") |
| 184 | 188 |
| 185 if (!is_ios) { | 189 if (!is_ios) { |
| 186 sources += | 190 sources += |
| 187 rebase_path(gypi_values.chrome_browser_non_ios_sources, ".", "//chrome") | 191 rebase_path(gypi_values.chrome_browser_non_ios_sources, ".", "//chrome") |
| 188 sources += rebase_path(gypi_values.chrome_browser_autocomplete_sources, | 192 sources += rebase_path(gypi_values.chrome_browser_autocomplete_sources, |
| 189 ".", | 193 ".", |
| 190 "//chrome") | 194 "//chrome") |
| 191 sources += rebase_path(gypi_values.chrome_browser_bookmark_sources, | 195 sources += rebase_path(gypi_values.chrome_browser_bookmark_sources, |
| 192 ".", | 196 ".", |
| 193 "//chrome") | 197 "//chrome") |
| (...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1181 ] | 1185 ] |
| 1182 } | 1186 } |
| 1183 | 1187 |
| 1184 if (enable_wifi_bootstrapping) { | 1188 if (enable_wifi_bootstrapping) { |
| 1185 sources += [ | 1189 sources += [ |
| 1186 "local_discovery/wifi/mock_wifi_manager.cc", | 1190 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1187 "local_discovery/wifi/mock_wifi_manager.h", | 1191 "local_discovery/wifi/mock_wifi_manager.h", |
| 1188 ] | 1192 ] |
| 1189 } | 1193 } |
| 1190 } | 1194 } |
| OLD | NEW |