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

Side by Side Diff: extensions/extensions.gypi

Issue 1022663003: Bind open firewall ports to visible application windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a dummy implementation of WebContentsModalDialogManager::CreateNativeWebModalManager to fix lin… Created 5 years, 9 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 { 5 {
6 'variables': { 6 'variables': {
7 'extensions_common_constants_sources': [ 7 'extensions_common_constants_sources': [
8 'common/constants.cc', 8 'common/constants.cc',
9 'common/constants.h', 9 'common/constants.h',
10 ], 10 ],
(...skipping 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after
1022 'test/result_catcher.cc', 1022 'test/result_catcher.cc',
1023 'test/result_catcher.h', 1023 'test/result_catcher.h',
1024 'test/test_content_utility_client.cc', 1024 'test/test_content_utility_client.cc',
1025 'test/test_content_utility_client.h', 1025 'test/test_content_utility_client.h',
1026 'test/test_extensions_client.cc', 1026 'test/test_extensions_client.cc',
1027 'test/test_extensions_client.h', 1027 'test/test_extensions_client.h',
1028 'test/test_permission_message_provider.cc', 1028 'test/test_permission_message_provider.cc',
1029 'test/test_permission_message_provider.h', 1029 'test/test_permission_message_provider.h',
1030 ], 1030 ],
1031 }, 1031 },
1032 'conditions': [
1033 ['chromeos==1', {
1034 'variables': {
1035 'extensions_browser_sources': [
1036 'browser/api/socket/app_firewall_hole_manager.cc',
1037 'browser/api/socket/app_firewall_hole_manager.h',
1038 ],
1039 'extensions_test_support_sources': [
1040 'test/test_web_contents_modal_dialog_manager.cc',
1041 ],
1042 },
1043 }],
1044 ],
1032 } 1045 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698