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

Unified Diff: chrome/chrome_browser.gypi

Issue 361253004: Add compiling chrome/browser to GN build on Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/sync_file_system/drive_backend/BUILD.gn ('k') | chrome/chrome_resources.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_browser.gypi
diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi
index 1ad7459d184da5b9915270f424384e26ba88b828..f9381d5edcc7d75d045656c686836b3679c959e1 100644
--- a/chrome/chrome_browser.gypi
+++ b/chrome/chrome_browser.gypi
@@ -1389,10 +1389,6 @@
'browser/sync/supervised_user_signin_manager_wrapper.h',
'browser/sync/sync_error_controller.cc',
'browser/sync/sync_error_controller.h',
- 'browser/sync/sync_error_notifier_ash.cc',
- 'browser/sync/sync_error_notifier_ash.h',
- 'browser/sync/sync_error_notifier_factory_ash.cc',
- 'browser/sync/sync_error_notifier_factory_ash.h',
'browser/sync/sync_startup_tracker.cc',
'browser/sync/sync_startup_tracker.h',
'browser/tab_contents/navigation_metrics_recorder.cc',
@@ -2256,6 +2252,13 @@
'browser/lifetime/application_lifetime_aura.cc',
'browser/platform_util_aura.cc',
],
+ # Cross-platform Ash sources.
+ 'chrome_browser_ash_sources': [
+ 'browser/sync/sync_error_notifier_ash.cc',
+ 'browser/sync/sync_error_notifier_ash.h',
+ 'browser/sync/sync_error_notifier_factory_ash.cc',
+ 'browser/sync/sync_error_notifier_factory_ash.h',
+ ],
'chrome_browser_win_sources': [
'browser/browser_process_platform_part_aurawin.cc',
'browser/browser_process_platform_part_aurawin.h',
@@ -3175,6 +3178,9 @@
'../ui/gl/gl.gyp:gl',
],
}],
+ ['use_ash==1', {
+ 'sources': [ '<@(chrome_browser_ash_sources)' ],
+ }],
['use_x11==1', {
'sources': [ '<@(chrome_browser_x11_sources)' ],
'conditions': [
@@ -3414,6 +3420,7 @@
{
# Protobuf compiler / generator for the fraudulent certificate reporting
# protocol buffer.
+ # GN version: //chrome/browser/net:cert_logger_proto
'target_name': 'cert_logger_proto',
'type': 'static_library',
'sources': [ 'browser/net/cert_logger.proto', ],
@@ -3476,6 +3483,7 @@
{
# Protobuf compiler / generator for the InMemoryURLIndex caching
# protocol buffer.
+ # GN version: //chrome/browser/history:in_memory_url_index_cache_proto
'target_name': 'in_memory_url_index_cache_proto',
'type': 'static_library',
'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
@@ -3487,6 +3495,7 @@
},
{
# Protobuf compiler / generator for Sync FileSystem protocol buffer.
+ # GN version: //chrome/browser/sync_file_system:sync_file_system_proto
'target_name': 'sync_file_system_proto',
'type': 'static_library',
'sources': [
@@ -3500,6 +3509,7 @@
},
{
# Protobuf compiler / generator for Sync FileSystem protocol buffer.
+ # GN version: //chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_proto
'target_name': 'sync_file_system_drive_proto',
'type': 'static_library',
'sources': [
« no previous file with comments | « chrome/browser/sync_file_system/drive_backend/BUILD.gn ('k') | chrome/chrome_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698