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

Side by Side Diff: ui/snapshot/snapshot.gyp

Issue 23868020: Fix remaining shared_library link_settings propagation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 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 | « ui/shell_dialogs.gypi ('k') | ui/surface/surface.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
(...skipping 23 matching lines...) Expand all
34 'include_dirs': [ 34 'include_dirs': [
35 '..', 35 '..',
36 ], 36 ],
37 'conditions': [ 37 'conditions': [
38 ['use_aura==1', { 38 ['use_aura==1', {
39 'dependencies': [ 39 'dependencies': [
40 '../aura/aura.gyp:aura', 40 '../aura/aura.gyp:aura',
41 '../compositor/compositor.gyp:compositor', 41 '../compositor/compositor.gyp:compositor',
42 ], 42 ],
43 }], 43 }],
44 ['OS=="mac"', {
45 'link_settings': {
46 'libraries': [
47 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
48 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framewor k',
49 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
50 ],
51 },
52 }],
44 ], 53 ],
45 }, 54 },
46 { 55 {
47 'target_name': 'snapshot_unittests', 56 'target_name': 'snapshot_unittests',
48 'type': '<(gtest_target_type)', 57 'type': '<(gtest_target_type)',
49 'dependencies': [ 58 'dependencies': [
50 '../../skia/skia.gyp:skia', 59 '../../skia/skia.gyp:skia',
51 '../../base/base.gyp:base', 60 '../../base/base.gyp:base',
52 '../../base/base.gyp:test_support_base', 61 '../../base/base.gyp:test_support_base',
53 '../../testing/gtest.gyp:gtest', 62 '../../testing/gtest.gyp:gtest',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'snapshot', 102 'snapshot',
94 ], 103 ],
95 'include_dirs': [ 104 'include_dirs': [
96 '../..', 105 '../..',
97 ], 106 ],
98 }, 107 },
99 ], 108 ],
100 }], 109 }],
101 ], 110 ],
102 } 111 }
OLDNEW
« no previous file with comments | « ui/shell_dialogs.gypi ('k') | ui/surface/surface.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698