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

Side by Side Diff: chrome/chrome.gyp

Issue 245020: Fix the linux shared build for common_constants.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 | Annotate | Revision Log
« 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 (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 # Define the common dependencies that contain all the actual 9 # Define the common dependencies that contain all the actual
10 # Chromium functionality. This list gets pulled in below by 10 # Chromium functionality. This list gets pulled in below by
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 ], 392 ],
393 }], 393 }],
394 ], 394 ],
395 }, 395 },
396 { 396 {
397 'target_name': 'common_constants', 397 'target_name': 'common_constants',
398 'type': '<(library)', 398 'type': '<(library)',
399 'dependencies': [ 399 'dependencies': [
400 '../base/base.gyp:base', 400 '../base/base.gyp:base',
401 ], 401 ],
402 'conditions': [
403 ['OS=="linux"', {
404 'dependencies': ['../build/linux/system.gyp:gtk'],
405 }],
406 ],
402 'sources': [ 407 'sources': [
403 'common/chrome_constants.cc', 408 'common/chrome_constants.cc',
404 'common/chrome_constants.h', 409 'common/chrome_constants.h',
405 'common/chrome_paths.cc', 410 'common/chrome_paths.cc',
406 'common/chrome_paths.h', 411 'common/chrome_paths.h',
407 'common/chrome_paths_internal.h', 412 'common/chrome_paths_internal.h',
408 'common/chrome_paths_linux.cc', 413 'common/chrome_paths_linux.cc',
409 'common/chrome_paths_mac.mm', 414 'common/chrome_paths_mac.mm',
410 'common/chrome_paths_win.cc', 415 'common/chrome_paths_win.cc',
411 'common/chrome_switches.cc', 416 'common/chrome_switches.cc',
(...skipping 6254 matching lines...) Expand 10 before | Expand all | Expand 10 after
6666 'defines': [ 6671 'defines': [
6667 'POSIX', 6672 'POSIX',
6668 ], 6673 ],
6669 }], 6674 }],
6670 ], 6675 ],
6671 }, 6676 },
6672 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 6677 ], # targets when chrome_personalization==1 and use_syncapi_stub==0
6673 }], 6678 }],
6674 ], # 'conditions' 6679 ], # 'conditions'
6675 } 6680 }
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