| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 # should be deleted and this line removed. See the | 507 # should be deleted and this line removed. See the |
| 508 # chrome_extensions_interactive_uitests target for more. | 508 # chrome_extensions_interactive_uitests target for more. |
| 509 deps += [ "//extensions:chrome_extensions_interactive_uitests" ] | 509 deps += [ "//extensions:chrome_extensions_interactive_uitests" ] |
| 510 | 510 |
| 511 # Runtime dependencies | 511 # Runtime dependencies |
| 512 data_deps += [ | 512 data_deps += [ |
| 513 "//ppapi:ppapi_tests", | 513 "//ppapi:ppapi_tests", |
| 514 "//third_party/mesa:osmesa", | 514 "//third_party/mesa:osmesa", |
| 515 ] | 515 ] |
| 516 | 516 |
| 517 if (use_aura) { |
| 518 sources += [ "../browser/drag_and_drop_browsertest.cc" ] |
| 519 } |
| 520 |
| 517 if (toolkit_views) { | 521 if (toolkit_views) { |
| 518 sources += [ | 522 sources += [ |
| 519 "../browser/ui/views/menu_controller_interactive_uitest.cc", | 523 "../browser/ui/views/menu_controller_interactive_uitest.cc", |
| 520 "../browser/ui/views/menu_item_view_interactive_uitest.cc", | 524 "../browser/ui/views/menu_item_view_interactive_uitest.cc", |
| 521 "../browser/ui/views/menu_model_adapter_test.cc", | 525 "../browser/ui/views/menu_model_adapter_test.cc", |
| 522 "../browser/ui/views/menu_test_base.cc", | 526 "../browser/ui/views/menu_test_base.cc", |
| 523 "../browser/ui/views/menu_test_base.h", | 527 "../browser/ui/views/menu_test_base.h", |
| 524 "../browser/ui/views/menu_view_drag_and_drop_test.cc", | 528 "../browser/ui/views/menu_view_drag_and_drop_test.cc", |
| 525 "../browser/ui/views/status_icons/status_tray_state_changer_interactive_
uitest_win.cc", | 529 "../browser/ui/views/status_icons/status_tray_state_changer_interactive_
uitest_win.cc", |
| 526 "//ui/views/corewm/desktop_capture_controller_unittest.cc", | 530 "//ui/views/corewm/desktop_capture_controller_unittest.cc", |
| (...skipping 4529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5056 "touch_hud", | 5060 "touch_hud", |
| 5057 "ui", | 5061 "ui", |
| 5058 ] | 5062 ] |
| 5059 | 5063 |
| 5060 if (is_linux && !is_android) { | 5064 if (is_linux && !is_android) { |
| 5061 deps += [ "//components/font_service:manifest" ] | 5065 deps += [ "//components/font_service:manifest" ] |
| 5062 packaged_services += [ "font_service" ] | 5066 packaged_services += [ "font_service" ] |
| 5063 } | 5067 } |
| 5064 } | 5068 } |
| 5065 } | 5069 } |
| OLD | NEW |