| 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/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 1308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1319 "../common/navigation_params_unittest.cc", | 1319 "../common/navigation_params_unittest.cc", |
| 1320 "../common/origin_trials/trial_token_unittest.cc", | 1320 "../common/origin_trials/trial_token_unittest.cc", |
| 1321 "../common/origin_trials/trial_token_validator_unittest.cc", | 1321 "../common/origin_trials/trial_token_validator_unittest.cc", |
| 1322 "../common/origin_util_unittest.cc", | 1322 "../common/origin_util_unittest.cc", |
| 1323 "../common/page_state_serialization_unittest.cc", | 1323 "../common/page_state_serialization_unittest.cc", |
| 1324 "../common/page_zoom_unittest.cc", | 1324 "../common/page_zoom_unittest.cc", |
| 1325 "../common/plugin_list_unittest.cc", | 1325 "../common/plugin_list_unittest.cc", |
| 1326 "../common/quarantine/quarantine_linux_unittest.cc", | 1326 "../common/quarantine/quarantine_linux_unittest.cc", |
| 1327 "../common/quarantine/quarantine_mac_unittest.mm", | 1327 "../common/quarantine/quarantine_mac_unittest.mm", |
| 1328 "../common/quarantine/quarantine_win_unittest.cc", | 1328 "../common/quarantine/quarantine_win_unittest.cc", |
| 1329 "../common/sandbox_mac_compiler_unittest.mm", | |
| 1330 "../common/sandbox_mac_diraccess_unittest.mm", | 1329 "../common/sandbox_mac_diraccess_unittest.mm", |
| 1331 "../common/sandbox_mac_fontloading_unittest.mm", | 1330 "../common/sandbox_mac_fontloading_unittest.mm", |
| 1332 "../common/sandbox_mac_system_access_unittest.mm", | 1331 "../common/sandbox_mac_system_access_unittest.mm", |
| 1333 "../common/sandbox_mac_unittest_helper.h", | 1332 "../common/sandbox_mac_unittest_helper.h", |
| 1334 "../common/sandbox_mac_unittest_helper.mm", | 1333 "../common/sandbox_mac_unittest_helper.mm", |
| 1335 "../common/service_worker/service_worker_utils_unittest.cc", | 1334 "../common/service_worker/service_worker_utils_unittest.cc", |
| 1336 "../common/webplugininfo_unittest.cc", | 1335 "../common/webplugininfo_unittest.cc", |
| 1337 "../renderer/android/disambiguation_popup_helper_unittest.cc", | 1336 "../renderer/android/disambiguation_popup_helper_unittest.cc", |
| 1338 "../renderer/android/email_detector_unittest.cc", | 1337 "../renderer/android/email_detector_unittest.cc", |
| 1339 "../renderer/android/phone_number_detector_unittest.cc", | 1338 "../renderer/android/phone_number_detector_unittest.cc", |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1633 if (use_dbus) { | 1632 if (use_dbus) { |
| 1634 deps += [ "//dbus:test_support" ] | 1633 deps += [ "//dbus:test_support" ] |
| 1635 } | 1634 } |
| 1636 } | 1635 } |
| 1637 if (is_win) { | 1636 if (is_win) { |
| 1638 deps += [ "//third_party/iaccessible2" ] | 1637 deps += [ "//third_party/iaccessible2" ] |
| 1639 libs = [ "dwrite.lib" ] | 1638 libs = [ "dwrite.lib" ] |
| 1640 } | 1639 } |
| 1641 if (is_mac) { | 1640 if (is_mac) { |
| 1642 deps += [ | 1641 deps += [ |
| 1642 "//sandbox/mac:seatbelt", |
| 1643 "//third_party/mozilla", | 1643 "//third_party/mozilla", |
| 1644 "//third_party/ocmock", | 1644 "//third_party/ocmock", |
| 1645 "//ui/accelerated_widget_mac", | 1645 "//ui/accelerated_widget_mac", |
| 1646 ] | 1646 ] |
| 1647 } | 1647 } |
| 1648 if (is_chromeos) { | 1648 if (is_chromeos) { |
| 1649 deps += [ "//chromeos" ] | 1649 deps += [ "//chromeos" ] |
| 1650 } | 1650 } |
| 1651 if (is_android) { | 1651 if (is_android) { |
| 1652 sources += [ | 1652 sources += [ |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1778 if (is_android) { | 1778 if (is_android) { |
| 1779 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1779 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1780 } | 1780 } |
| 1781 } | 1781 } |
| 1782 | 1782 |
| 1783 group("fuzzers") { | 1783 group("fuzzers") { |
| 1784 deps = [ | 1784 deps = [ |
| 1785 "//content/test/fuzzer", | 1785 "//content/test/fuzzer", |
| 1786 ] | 1786 ] |
| 1787 } | 1787 } |
| OLD | NEW |