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

Side by Side Diff: base/base.gyp

Issue 11685002: Linux: add option to use system nspr. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years, 12 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 | base/base.gypi » ('j') | base/third_party/nspr/nspr.gyp » ('J')
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 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
11 'base.gypi', 11 'base.gypi',
12 ], 12 ],
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'base', 15 'target_name': 'base',
16 'type': '<(component)', 16 'type': '<(component)',
17 'toolsets': ['host', 'target'], 17 'toolsets': ['host', 'target'],
18 'variables': { 18 'variables': {
19 'base_target': 1, 19 'base_target': 1,
20 'enable_wexit_time_destructors': 1, 20 'enable_wexit_time_destructors': 1,
21 'optimize': 'max', 21 'optimize': 'max',
22 }, 22 },
23 'dependencies': [ 23 'dependencies': [
24 'base_static', 24 'base_static',
25 'allocator/allocator.gyp:allocator_extension_thunks', 25 'allocator/allocator.gyp:allocator_extension_thunks',
26 '../testing/gtest.gyp:gtest_prod', 26 '../testing/gtest.gyp:gtest_prod',
27 '../third_party/modp_b64/modp_b64.gyp:modp_b64', 27 '../third_party/modp_b64/modp_b64.gyp:modp_b64',
28 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions', 28 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions',
29 'third_party/nspr/nspr.gyp:nspr',
29 ], 30 ],
30 # TODO(gregoryd): direct_dependent_settings should be shared with the 31 # TODO(gregoryd): direct_dependent_settings should be shared with the
31 # 64-bit target, but it doesn't work due to a bug in gyp 32 # 64-bit target, but it doesn't work due to a bug in gyp
32 'direct_dependent_settings': { 33 'direct_dependent_settings': {
33 'include_dirs': [ 34 'include_dirs': [
34 '..', 35 '..',
35 ], 36 ],
36 }, 37 },
37 'conditions': [ 38 'conditions': [
38 ['use_glib==1', { 39 ['use_glib==1', {
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 'win/win_util_unittest.cc', 582 'win/win_util_unittest.cc',
582 'win/wrapped_window_proc_unittest.cc', 583 'win/wrapped_window_proc_unittest.cc',
583 ], 584 ],
584 'dependencies': [ 585 'dependencies': [
585 'base', 586 'base',
586 'base_i18n', 587 'base_i18n',
587 'base_static', 588 'base_static',
588 'run_all_unittests', 589 'run_all_unittests',
589 'test_support_base', 590 'test_support_base',
590 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions', 591 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions',
592 'third_party/nspr/nspr.gyp:nspr',
591 '../testing/gmock.gyp:gmock', 593 '../testing/gmock.gyp:gmock',
592 '../testing/gtest.gyp:gtest', 594 '../testing/gtest.gyp:gtest',
593 '../third_party/icu/icu.gyp:icui18n', 595 '../third_party/icu/icu.gyp:icui18n',
594 '../third_party/icu/icu.gyp:icuuc', 596 '../third_party/icu/icu.gyp:icuuc',
595 ], 597 ],
596 'includes': ['../build/nocompile.gypi'], 598 'includes': ['../build/nocompile.gypi'],
597 'variables': { 599 'variables': {
598 # TODO(ajwong): Is there a way to autodetect this? 600 # TODO(ajwong): Is there a way to autodetect this?
599 'module_dir': 'base' 601 'module_dir': 'base'
600 }, 602 },
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
1109 'base_unittests.isolate', 1111 'base_unittests.isolate',
1110 ], 1112 ],
1111 'sources': [ 1113 'sources': [
1112 'base_unittests.isolate', 1114 'base_unittests.isolate',
1113 ], 1115 ],
1114 }, 1116 },
1115 ], 1117 ],
1116 }], 1118 }],
1117 ], 1119 ],
1118 } 1120 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | base/third_party/nspr/nspr.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698