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

Side by Side Diff: chrome/chrome_browser_chromeos.gypi

Issue 16091011: 2nd try: Split webkit_storage target into webkit_storage_{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: splint_link fix Created 7 years, 6 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 (c) 2012 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',
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 '../ui/ui.gyp:ui', 83 '../ui/ui.gyp:ui',
84 '../ui/ui.gyp:ui_resources', 84 '../ui/ui.gyp:ui_resources',
85 '../ui/views/controls/webview/webview.gyp:webview', 85 '../ui/views/controls/webview/webview.gyp:webview',
86 '../ui/web_dialogs/web_dialogs.gyp:web_dialogs', 86 '../ui/web_dialogs/web_dialogs.gyp:web_dialogs',
87 '../url/url.gyp:url_lib', 87 '../url/url.gyp:url_lib',
88 '../v8/tools/gyp/v8.gyp:v8', 88 '../v8/tools/gyp/v8.gyp:v8',
89 '../ui/views/controls/webview/webview.gyp:webview', 89 '../ui/views/controls/webview/webview.gyp:webview',
90 '../webkit/common/user_agent/webkit_user_agent.gyp:user_agent', 90 '../webkit/common/user_agent/webkit_user_agent.gyp:user_agent',
91 '../webkit/support/webkit_support.gyp:glue', 91 '../webkit/support/webkit_support.gyp:glue',
92 '../webkit/support/webkit_support.gyp:webkit_resources', 92 '../webkit/support/webkit_support.gyp:webkit_resources',
93 '../webkit/support/webkit_support.gyp:webkit_storage', 93 '../webkit/storage_browser.gyp:webkit_storage_browser',
Lei Zhang 2013/06/11 20:28:59 nit: storage before support.
94 '../webkit/storage_common.gyp:webkit_storage_common',
94 'chrome_resources.gyp:chrome_strings', 95 'chrome_resources.gyp:chrome_strings',
95 ], 96 ],
96 'defines': [ 97 'defines': [
97 '<@(nacl_defines)', 98 '<@(nacl_defines)',
98 ], 99 ],
99 'direct_dependent_settings': { 100 'direct_dependent_settings': {
100 'defines': [ 101 'defines': [
101 '<@(nacl_defines)', 102 '<@(nacl_defines)',
102 ], 103 ],
103 }, 104 },
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 'browser/chromeos/attestation/attestation_key_payload.proto', 940 'browser/chromeos/attestation/attestation_key_payload.proto',
940 ], 941 ],
941 'variables': { 942 'variables': {
942 'proto_in_dir': 'browser/chromeos/attestation', 943 'proto_in_dir': 'browser/chromeos/attestation',
943 'proto_out_dir': 'chrome/browser/chromeos/attestation', 944 'proto_out_dir': 'chrome/browser/chromeos/attestation',
944 }, 945 },
945 'includes': [ '../build/protoc.gypi' ] 946 'includes': [ '../build/protoc.gypi' ]
946 }, 947 },
947 ], 948 ],
948 } 949 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698