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

Side by Side Diff: extensions/extensions.gyp

Issue 619303002: Fix a missing dependency missing extensions.gyp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 10 matching lines...) Expand all
21 '../content/content.gyp:content_common', 21 '../content/content.gyp:content_common',
22 '../crypto/crypto.gyp:crypto', 22 '../crypto/crypto.gyp:crypto',
23 '../ipc/ipc.gyp:ipc', 23 '../ipc/ipc.gyp:ipc',
24 '../net/net.gyp:net', 24 '../net/net.gyp:net',
25 '../third_party/re2/re2.gyp:re2', 25 '../third_party/re2/re2.gyp:re2',
26 '../ui/base/ui_base.gyp:ui_base', 26 '../ui/base/ui_base.gyp:ui_base',
27 '../ui/gfx/gfx.gyp:gfx_geometry', 27 '../ui/gfx/gfx.gyp:gfx_geometry',
28 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', 28 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc',
29 '../url/url.gyp:url_lib', 29 '../url/url.gyp:url_lib',
30 '../third_party/libxml/libxml.gyp:libxml', 30 '../third_party/libxml/libxml.gyp:libxml',
31 'extensions_resources.gyp:extensions_resources',
31 'extensions_strings.gyp:extensions_strings', 32 'extensions_strings.gyp:extensions_strings',
32 ], 33 ],
33 'include_dirs': [ 34 'include_dirs': [
34 '..', 35 '..',
35 '<(INTERMEDIATE_DIR)', 36 '<(INTERMEDIATE_DIR)',
36 ], 37 ],
37 'sources': [ 38 'sources': [
38 # Note: sources list duplicated in GN build. 39 # Note: sources list duplicated in GN build.
39 'common/api/bluetooth/bluetooth_manifest_data.cc', 40 'common/api/bluetooth/bluetooth_manifest_data.cc',
40 'common/api/bluetooth/bluetooth_manifest_data.h', 41 'common/api/bluetooth/bluetooth_manifest_data.h',
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 '../content/content.gyp:content_browser', 284 '../content/content.gyp:content_browser',
284 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 285 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
285 '../device/serial/serial.gyp:device_serial', 286 '../device/serial/serial.gyp:device_serial',
286 '../skia/skia.gyp:skia', 287 '../skia/skia.gyp:skia',
287 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 288 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
288 '../third_party/re2/re2.gyp:re2', 289 '../third_party/re2/re2.gyp:re2',
289 'browser/api/api_registration.gyp:extensions_api_registration', 290 'browser/api/api_registration.gyp:extensions_api_registration',
290 'common/api/api.gyp:cast_channel_proto', 291 'common/api/api.gyp:cast_channel_proto',
291 'common/api/api.gyp:extensions_api', 292 'common/api/api.gyp:extensions_api',
292 'extensions_common', 293 'extensions_common',
294 'extensions_resources.gyp:extensions_resources',
293 'extensions_strings.gyp:extensions_strings', 295 'extensions_strings.gyp:extensions_strings',
294 ], 296 ],
295 'include_dirs': [ 297 'include_dirs': [
296 '..', 298 '..',
297 '<(INTERMEDIATE_DIR)', 299 '<(INTERMEDIATE_DIR)',
298 # Needed to access generated API headers. 300 # Needed to access generated API headers.
299 '<(SHARED_INTERMEDIATE_DIR)', 301 '<(SHARED_INTERMEDIATE_DIR)',
300 # Needed for grit. 302 # Needed for grit.
301 '<(SHARED_INTERMEDIATE_DIR)/chrome', 303 '<(SHARED_INTERMEDIATE_DIR)/chrome',
302 ], 304 ],
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
1172 'conditions': [ 1174 'conditions': [
1173 ['OS=="win" and win_use_allocator_shim==1', { 1175 ['OS=="win" and win_use_allocator_shim==1', {
1174 'dependencies': [ 1176 'dependencies': [
1175 '../base/allocator/allocator.gyp:allocator', 1177 '../base/allocator/allocator.gyp:allocator',
1176 ], 1178 ],
1177 }], 1179 }],
1178 ], 1180 ],
1179 }, 1181 },
1180 ] 1182 ]
1181 } 1183 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698