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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1018953004: Add SeccompSupportDetector for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More GN 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
« no previous file with comments | « chrome/browser/chrome_browser_main_android.cc ('k') | chrome/chrome_utility.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'browser/android/provider/bookmark_model_observer_task.cc', 142 'browser/android/provider/bookmark_model_observer_task.cc',
143 'browser/android/provider/bookmark_model_observer_task.h', 143 'browser/android/provider/bookmark_model_observer_task.h',
144 'browser/android/provider/chrome_browser_provider.cc', 144 'browser/android/provider/chrome_browser_provider.cc',
145 'browser/android/provider/chrome_browser_provider.h', 145 'browser/android/provider/chrome_browser_provider.h',
146 'browser/android/provider/run_on_ui_thread_blocking.h', 146 'browser/android/provider/run_on_ui_thread_blocking.h',
147 'browser/android/recently_closed_tabs_bridge.cc', 147 'browser/android/recently_closed_tabs_bridge.cc',
148 'browser/android/recently_closed_tabs_bridge.h', 148 'browser/android/recently_closed_tabs_bridge.h',
149 'browser/android/resource_id.h', 149 'browser/android/resource_id.h',
150 'browser/android/resource_mapper.cc', 150 'browser/android/resource_mapper.cc',
151 'browser/android/resource_mapper.h', 151 'browser/android/resource_mapper.h',
152 'browser/android/seccomp_support_detector.cc',
153 'browser/android/seccomp_support_detector.h',
152 'browser/android/service_tab_launcher.cc', 154 'browser/android/service_tab_launcher.cc',
153 'browser/android/service_tab_launcher.h', 155 'browser/android/service_tab_launcher.h',
154 'browser/android/shortcut_helper.cc', 156 'browser/android/shortcut_helper.cc',
155 'browser/android/shortcut_helper.h', 157 'browser/android/shortcut_helper.h',
156 'browser/android/shortcut_info.cc', 158 'browser/android/shortcut_info.cc',
157 'browser/android/shortcut_info.h', 159 'browser/android/shortcut_info.h',
158 'browser/android/signin/account_management_screen_helper.cc', 160 'browser/android/signin/account_management_screen_helper.cc',
159 'browser/android/signin/account_management_screen_helper.h', 161 'browser/android/signin/account_management_screen_helper.h',
160 'browser/android/signin/signin_manager_android.cc', 162 'browser/android/signin/signin_manager_android.cc',
161 'browser/android/signin/signin_manager_android.h', 163 'browser/android/signin/signin_manager_android.h',
(...skipping 3257 matching lines...) Expand 10 before | Expand all | Expand 10 after
3419 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ util', 3421 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ util',
3420 'chrome_browser_jni_headers', 3422 'chrome_browser_jni_headers',
3421 ], 3423 ],
3422 'dependencies!': [ 3424 'dependencies!': [
3423 '../components/components.gyp:storage_monitor', 3425 '../components/components.gyp:storage_monitor',
3424 '../components/components.gyp:web_modal', 3426 '../components/components.gyp:web_modal',
3425 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' , 3427 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' ,
3426 ], 3428 ],
3427 'sources': [ '<@(chrome_browser_android_sources)' ], 3429 'sources': [ '<@(chrome_browser_android_sources)' ],
3428 'defines': [ 'ENABLE_DATA_REDUCTION_PROXY_DEBUGGING' ], 3430 'defines': [ 'ENABLE_DATA_REDUCTION_PROXY_DEBUGGING' ],
3431 'conditions': [
3432 ['use_seccomp_bpf==1', {
3433 'defines': ['USE_SECCOMP_BPF'],
3434 }],
3435 ],
3429 }], 3436 }],
3430 ['OS=="mac"', { 3437 ['OS=="mac"', {
3431 'dependencies': [ 3438 'dependencies': [
3432 '../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:go ogle_toolbox_for_mac', 3439 '../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:go ogle_toolbox_for_mac',
3433 '../third_party/mozilla/mozilla.gyp:mozilla', 3440 '../third_party/mozilla/mozilla.gyp:mozilla',
3434 ], 3441 ],
3435 'link_settings': { 3442 'link_settings': {
3436 'libraries': [ 3443 'libraries': [
3437 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', 3444 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework',
3438 '$(SDKROOT)/System/Library/Frameworks/AddressBook.framework', 3445 '$(SDKROOT)/System/Library/Frameworks/AddressBook.framework',
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
3762 'variables': { 3769 'variables': {
3763 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3770 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3764 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3771 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3765 }, 3772 },
3766 'includes': [ '../build/protoc.gypi' ] 3773 'includes': [ '../build/protoc.gypi' ]
3767 }, 3774 },
3768 ], 3775 ],
3769 },], 3776 },],
3770 ], 3777 ],
3771 } 3778 }
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main_android.cc ('k') | chrome/chrome_utility.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698