| 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/chromecast_build.gni") |     5 import("//build/config/chromecast_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 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1189       "webui/system_info_ui.cc", |  1189       "webui/system_info_ui.cc", | 
|  1190       "webui/system_info_ui.h", |  1190       "webui/system_info_ui.h", | 
|  1191       "webui/theme_handler.cc", |  1191       "webui/theme_handler.cc", | 
|  1192       "webui/theme_handler.h", |  1192       "webui/theme_handler.h", | 
|  1193       "webui/uber/uber_ui.cc", |  1193       "webui/uber/uber_ui.cc", | 
|  1194       "webui/uber/uber_ui.h", |  1194       "webui/uber/uber_ui.h", | 
|  1195       "window_sizer/window_sizer.cc", |  1195       "window_sizer/window_sizer.cc", | 
|  1196       "window_sizer/window_sizer.h", |  1196       "window_sizer/window_sizer.h", | 
|  1197     ] |  1197     ] | 
|  1198     deps += [ |  1198     deps += [ | 
|  1199       "//apps", |  | 
|  1200       "//apps/ui/views", |  1199       "//apps/ui/views", | 
|  1201       "//chrome/app/vector_icons", |  1200       "//chrome/app/vector_icons", | 
|  1202       "//chrome/browser/profile_resetter:profile_reset_report_proto", |  1201       "//chrome/browser/profile_resetter:profile_reset_report_proto", | 
|  1203       "//chrome/common:features", |  1202       "//chrome/common:features", | 
|  1204       "//components/feedback/proto", |  1203       "//components/feedback/proto", | 
|  1205       "//components/proximity_auth/webui", |  1204       "//components/proximity_auth/webui", | 
|  1206       "//components/web_modal", |  1205       "//components/web_modal", | 
|  1207       "//device/bluetooth", |  1206       "//device/bluetooth", | 
|  1208       "//extensions/common:mojo", |  | 
|  1209       "//mash/public/interfaces", |  1207       "//mash/public/interfaces", | 
|  1210       "//services/device/public/interfaces", |  1208       "//services/device/public/interfaces", | 
|  1211       "//ui/vector_icons", |  1209       "//ui/vector_icons", | 
|  1212     ] |  1210     ] | 
 |  1211  | 
 |  1212     if (enable_extensions) { | 
 |  1213       deps += [ | 
 |  1214         "//apps", | 
 |  1215         "//extensions/common:mojo", | 
 |  1216       ] | 
 |  1217     } | 
|  1213   } |  1218   } | 
|  1214  |  1219  | 
|  1215   if (enable_basic_printing || enable_print_preview) { |  1220   if (enable_basic_printing || enable_print_preview) { | 
|  1216     deps += [ "//printing" ] |  1221     deps += [ "//printing" ] | 
|  1217   } |  1222   } | 
|  1218  |  1223  | 
|  1219   if (enable_nacl) { |  1224   if (enable_nacl) { | 
|  1220     sources += [ |  1225     sources += [ | 
|  1221       "webui/nacl_ui.cc", |  1226       "webui/nacl_ui.cc", | 
|  1222       "webui/nacl_ui.h", |  1227       "webui/nacl_ui.h", | 
| (...skipping 2377 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  3600       "test/test_confirm_bubble_model.cc", |  3605       "test/test_confirm_bubble_model.cc", | 
|  3601       "test/test_confirm_bubble_model.h", |  3606       "test/test_confirm_bubble_model.h", | 
|  3602     ] |  3607     ] | 
|  3603     deps += [ "//chrome/test:test_support_ui" ] |  3608     deps += [ "//chrome/test:test_support_ui" ] | 
|  3604   } |  3609   } | 
|  3605  |  3610  | 
|  3606   if (enable_extensions) { |  3611   if (enable_extensions) { | 
|  3607     deps += [ "//extensions/browser" ] |  3612     deps += [ "//extensions/browser" ] | 
|  3608   } |  3613   } | 
|  3609 } |  3614 } | 
| OLD | NEW |