Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: chrome/chrome_tests.gypi

Issue 1913943003: Remove dependencies on chrome\installer from the ChromeCrashReporterClient class on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 5 'variables': {
6 'build_angle_deqp_tests%': 0, 6 'build_angle_deqp_tests%': 0,
7 'chrome_browser_extensions_test_support_sources': [ 7 'chrome_browser_extensions_test_support_sources': [
8 # A list of sources which is shared between different browser tests. 8 # A list of sources which is shared between different browser tests.
9 'browser/apps/app_browsertest_util.cc', 9 'browser/apps/app_browsertest_util.cc',
10 'browser/apps/app_browsertest_util.h', 10 'browser/apps/app_browsertest_util.h',
(...skipping 1720 matching lines...) Expand 10 before | Expand all | Expand 10 after
1731 ['OS=="linux" and chromeos==0 and use_ozone==0', { 1731 ['OS=="linux" and chromeos==0 and use_ozone==0', {
1732 'sources': [ 'browser/ui/libgtk2ui/select_file_dialog_interactive_uite st.cc' ], 1732 'sources': [ 'browser/ui/libgtk2ui/select_file_dialog_interactive_uite st.cc' ],
1733 'dependencies': [ '../build/linux/system.gyp:gtk2' ], 1733 'dependencies': [ '../build/linux/system.gyp:gtk2' ],
1734 }], 1734 }],
1735 ['use_ash==1', { 1735 ['use_ash==1', {
1736 'sources': [ '<@(chrome_interactive_ui_test_ash_sources)' ], 1736 'sources': [ '<@(chrome_interactive_ui_test_ash_sources)' ],
1737 'dependencies': [ 1737 'dependencies': [
1738 '../ash/ash.gyp:ash_interactive_ui_test_support', 1738 '../ash/ash.gyp:ash_interactive_ui_test_support',
1739 ], 1739 ],
1740 }], 1740 }],
1741 ['OS=="win"', {
1742 'dependencies': [
1743 'chrome.gyp:install_static_util',
1744 ],
1745 }],
1741 ['OS=="mac"', { 1746 ['OS=="mac"', {
1742 'dependencies': [ 1747 'dependencies': [
1743 'chrome' 1748 'chrome'
1744 ], 1749 ],
1745 # See comment about the same line in chrome/chrome_tests.gypi. 1750 # See comment about the same line in chrome/chrome_tests.gypi.
1746 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, 1751 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
1747 'conditions' : [ 1752 'conditions' : [
1748 # The browser window can be views or Cocoa on Mac. Test accordingly. 1753 # The browser window can be views or Cocoa on Mac. Test accordingly.
1749 ['mac_views_browser==1', { 1754 ['mac_views_browser==1', {
1750 'sources': [ '<@(chrome_interactive_ui_test_views_non_mac_sources) ' ], 1755 'sources': [ '<@(chrome_interactive_ui_test_views_non_mac_sources) ' ],
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
2284 '../components/components.gyp:arc_test_support', 2289 '../components/components.gyp:arc_test_support',
2285 '../third_party/boringssl/boringssl.gyp:boringssl', 2290 '../third_party/boringssl/boringssl.gyp:boringssl',
2286 ] 2291 ]
2287 }, { 2292 }, {
2288 'conditions': [ 2293 'conditions': [
2289 ['OS == "linux" or OS == "win"', { 2294 ['OS == "linux" or OS == "win"', {
2290 'sources': [ 2295 'sources': [
2291 'browser/ui/views/ime/ime_warning_bubble_browsertest.cc', 2296 'browser/ui/views/ime/ime_warning_bubble_browsertest.cc',
2292 'browser/ui/views/ime/ime_window_browsertest.cc', 2297 'browser/ui/views/ime/ime_window_browsertest.cc',
2293 ], 2298 ],
2294 }] 2299 }],
2300 ['OS=="win"', {
2301 'dependencies': [
2302 'chrome.gyp:install_static_util',
2303 ],
2304 }],
2295 ] 2305 ]
2296 }], 2306 }],
2297 ['enable_wifi_display==1', { 2307 ['enable_wifi_display==1', {
2298 'sources': [ 2308 'sources': [
2299 '<@(chrome_browser_tests_display_source_apitest)', 2309 '<@(chrome_browser_tests_display_source_apitest)',
2300 ], 2310 ],
2301 }], 2311 }],
2302 [ 'cld_version==2', { 2312 [ 'cld_version==2', {
2303 'dependencies': [ 2313 'dependencies': [
2304 # Because the browser_tests use translate, they need CLD data. 2314 # Because the browser_tests use translate, they need CLD data.
(...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after
3612 'browser', 3622 'browser',
3613 ], 3623 ],
3614 'sources': [ 3624 'sources': [
3615 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3625 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3616 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3626 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3617 ], 3627 ],
3618 }] 3628 }]
3619 }], 3629 }],
3620 ], # 'conditions' 3630 ], # 'conditions'
3621 } 3631 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698