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

Side by Side Diff: chrome/chrome_browser_chromeos.gypi

Issue 11412211: [sync] Componentize sync: Part Final: Target 'sync' is now its own component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + merge with net->sync dependency fix (no code changes) Created 7 years, 11 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'browser_chromeos', 9 'target_name': 'browser_chromeos',
10 'type': 'static_library', 10 'type': 'static_library',
11 'variables': { 11 'variables': {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 '../content/content.gyp:content_browser', 50 '../content/content.gyp:content_browser',
51 '../content/content.gyp:content_common', 51 '../content/content.gyp:content_common',
52 '../crypto/crypto.gyp:crypto', 52 '../crypto/crypto.gyp:crypto',
53 '../dbus/dbus.gyp:dbus', 53 '../dbus/dbus.gyp:dbus',
54 '../device/device.gyp:device_bluetooth', 54 '../device/device.gyp:device_bluetooth',
55 '../media/media.gyp:media', 55 '../media/media.gyp:media',
56 '../net/net.gyp:net', 56 '../net/net.gyp:net',
57 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin 57 '../ppapi/ppapi_internal.gyp:ppapi_ipc', # For PpapiMsg_LoadPlugin
58 '../printing/printing.gyp:printing', 58 '../printing/printing.gyp:printing',
59 '../skia/skia.gyp:skia', 59 '../skia/skia.gyp:skia',
60 '../sync/protocol/sync_proto.gyp:sync_proto',
61 # TODO(akalin): Depend only on sync_api from sync. 60 # TODO(akalin): Depend only on sync_api from sync.
62 '../sync/sync.gyp:sync_api', 61 '../sync/sync.gyp:sync_api',
63 '../sync/sync.gyp:sync_internal_api', 62 '../sync/sync.gyp:sync_internal_api',
64 '../sync/sync.gyp:sync_notifier', 63 '../sync/sync.gyp:sync_notifier',
64 '../sync/sync.gyp:sync_proto',
65 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', 65 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h',
66 '../third_party/bzip2/bzip2.gyp:bzip2', 66 '../third_party/bzip2/bzip2.gyp:bzip2',
67 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 67 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
68 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp', 68 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp',
69 '../third_party/cld/cld.gyp:cld', 69 '../third_party/cld/cld.gyp:cld',
70 '../third_party/expat/expat.gyp:expat', 70 '../third_party/expat/expat.gyp:expat',
71 '../third_party/hunspell/hunspell.gyp:hunspell', 71 '../third_party/hunspell/hunspell.gyp:hunspell',
72 '../third_party/icu/icu.gyp:icui18n', 72 '../third_party/icu/icu.gyp:icui18n',
73 '../third_party/icu/icu.gyp:icuuc', 73 '../third_party/icu/icu.gyp:icuuc',
74 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 74 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 'type': 'static_library', 788 'type': 'static_library',
789 'sources': [ 'browser/chromeos/drive/drive.proto' ], 789 'sources': [ 'browser/chromeos/drive/drive.proto' ],
790 'variables': { 790 'variables': {
791 'proto_in_dir': 'browser/chromeos/drive', 791 'proto_in_dir': 'browser/chromeos/drive',
792 'proto_out_dir': 'chrome/browser/chromeos/drive', 792 'proto_out_dir': 'chrome/browser/chromeos/drive',
793 }, 793 },
794 'includes': [ '../build/protoc.gypi' ] 794 'includes': [ '../build/protoc.gypi' ]
795 }, 795 },
796 ], 796 ],
797 } 797 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698