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

Side by Side Diff: cc/cc.gyp

Issue 148243013: Add shared bitmap managers for browser and renderer processes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 # 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 {
11 'target_name': 'cc', 11 'target_name': 'cc',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '<(DEPTH)/base/base.gyp:base', 14 '<(DEPTH)/base/base.gyp:base',
15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
16 '<(DEPTH)/crypto/crypto.gyp:crypto',
danakj 2014/02/14 20:16:48 This might change based on https://codereview.chro
jbauman 2014/02/18 19:31:35 Looks like I should change this back to use base::
16 '<(DEPTH)/gpu/gpu.gyp:gpu', 17 '<(DEPTH)/gpu/gpu.gyp:gpu',
17 '<(DEPTH)/media/media.gyp:media', 18 '<(DEPTH)/media/media.gyp:media',
18 '<(DEPTH)/skia/skia.gyp:skia', 19 '<(DEPTH)/skia/skia.gyp:skia',
19 '<(DEPTH)/ui/events/events.gyp:events_base', 20 '<(DEPTH)/ui/events/events.gyp:events_base',
20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 22 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
22 '<(DEPTH)/ui/gl/gl.gyp:gl', 23 '<(DEPTH)/ui/gl/gl.gyp:gl',
23 ], 24 ],
24 'export_dependent_settings': [ 25 'export_dependent_settings': [
25 '<(DEPTH)/skia/skia.gyp:skia', 26 '<(DEPTH)/skia/skia.gyp:skia',
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 'surfaces/surface.h', 472 'surfaces/surface.h',
472 'surfaces/surface_aggregator.cc', 473 'surfaces/surface_aggregator.cc',
473 'surfaces/surface_aggregator.h', 474 'surfaces/surface_aggregator.h',
474 'surfaces/surface_manager.cc', 475 'surfaces/surface_manager.cc',
475 'surfaces/surface_manager.h', 476 'surfaces/surface_manager.h',
476 'surfaces/surfaces_export.h', 477 'surfaces/surfaces_export.h',
477 ], 478 ],
478 }, 479 },
479 ], 480 ],
480 } 481 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698