| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 } | 210 } |
| 211 if (is_win) { | 211 if (is_win) { |
| 212 sources += [ "//chrome/app/chrome_crash_reporter_client_win.cc" ] | 212 sources += [ "//chrome/app/chrome_crash_reporter_client_win.cc" ] |
| 213 public_deps += [ | 213 public_deps += [ |
| 214 "//chrome/install_static/test:test_support", | 214 "//chrome/install_static/test:test_support", |
| 215 "//components/crash/content/app", | 215 "//components/crash/content/app", |
| 216 "//third_party/wtl", | 216 "//third_party/wtl", |
| 217 ] | 217 ] |
| 218 } | 218 } |
| 219 if (is_chromeos) { | 219 if (is_chromeos) { |
| 220 sources += [ |
| 221 "../browser/chromeos/accessibility/speech_monitor.cc", |
| 222 "../browser/chromeos/accessibility/speech_monitor.h", |
| 223 ] |
| 220 public_deps += [ | 224 public_deps += [ |
| 221 "//components/ownership", | 225 "//components/ownership", |
| 222 "//components/user_manager:test_support", | 226 "//components/user_manager:test_support", |
| 223 ] | 227 ] |
| 224 } | 228 } |
| 225 | 229 |
| 226 if (use_aura) { | 230 if (use_aura) { |
| 227 sources += [ | 231 sources += [ |
| 228 "base/test_browser_window_aura.cc", | 232 "base/test_browser_window_aura.cc", |
| 229 "base/test_browser_window_aura.h", | 233 "base/test_browser_window_aura.h", |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 if (use_aura || is_mac) { | 614 if (use_aura || is_mac) { |
| 611 deps += [ "//ui/touch_selection" ] | 615 deps += [ "//ui/touch_selection" ] |
| 612 } | 616 } |
| 613 } | 617 } |
| 614 | 618 |
| 615 if (is_chromeos) { | 619 if (is_chromeos) { |
| 616 sources += [ | 620 sources += [ |
| 617 "../../ash/accelerators/accelerator_interactive_uitest_chromeos.cc", | 621 "../../ash/accelerators/accelerator_interactive_uitest_chromeos.cc", |
| 618 "../browser/chromeos/accessibility/accessibility_highlight_manager_inter
active_uitest.cc", | 622 "../browser/chromeos/accessibility/accessibility_highlight_manager_inter
active_uitest.cc", |
| 619 "../browser/chromeos/accessibility/magnification_controller_browsertest.
cc", | 623 "../browser/chromeos/accessibility/magnification_controller_browsertest.
cc", |
| 620 "../browser/chromeos/accessibility/speech_monitor.cc", | |
| 621 "../browser/chromeos/accessibility/speech_monitor.h", | |
| 622 "../browser/chromeos/accessibility/spoken_feedback_browsertest.cc", | 624 "../browser/chromeos/accessibility/spoken_feedback_browsertest.cc", |
| 623 "../browser/chromeos/accessibility/sticky_keys_browsertest.cc", | 625 "../browser/chromeos/accessibility/sticky_keys_browsertest.cc", |
| 624 "../browser/chromeos/input_method/textinput_browsertest.cc", | 626 "../browser/chromeos/input_method/textinput_browsertest.cc", |
| 625 "../browser/chromeos/input_method/textinput_surroundingtext_browsertest.
cc", | 627 "../browser/chromeos/input_method/textinput_surroundingtext_browsertest.
cc", |
| 626 "../browser/chromeos/input_method/textinput_test_helper.cc", | 628 "../browser/chromeos/input_method/textinput_test_helper.cc", |
| 627 "../browser/chromeos/input_method/textinput_test_helper.h", | 629 "../browser/chromeos/input_method/textinput_test_helper.h", |
| 628 "../browser/chromeos/login/eula_browsertest.cc", | 630 "../browser/chromeos/login/eula_browsertest.cc", |
| 629 "../browser/chromeos/login/lock/screen_locker_browsertest.cc", | 631 "../browser/chromeos/login/lock/screen_locker_browsertest.cc", |
| 630 "../browser/chromeos/login/lock/screen_locker_tester.cc", | 632 "../browser/chromeos/login/lock/screen_locker_tester.cc", |
| 631 "../browser/chromeos/login/lock/screen_locker_tester.h", | 633 "../browser/chromeos/login/lock/screen_locker_tester.h", |
| (...skipping 4547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5179 } | 5181 } |
| 5180 | 5182 |
| 5181 if (is_win) { | 5183 if (is_win) { |
| 5182 loadable_module("conflicts_dll") { | 5184 loadable_module("conflicts_dll") { |
| 5183 testonly = true | 5185 testonly = true |
| 5184 sources = [ | 5186 sources = [ |
| 5185 "conflicts/conflicts_dll.cc", | 5187 "conflicts/conflicts_dll.cc", |
| 5186 ] | 5188 ] |
| 5187 } | 5189 } |
| 5188 } | 5190 } |
| OLD | NEW |