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

Side by Side Diff: base/base.gypi

Issue 7480016: Add AutoJObject and AutoGlobalJObject (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed nitts Created 9 years, 5 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
« base/android/auto_jobject.h ('K') | « base/android/auto_jobject.cc ('k') | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
11 # This part is shared between the targets defined below. 11 # This part is shared between the targets defined below.
12 ['base_target==1', { 12 ['base_target==1', {
13 'sources': [ 13 'sources': [
14 '../build/build_config.h', 14 '../build/build_config.h',
15 'third_party/dmg_fp/dmg_fp.h', 15 'third_party/dmg_fp/dmg_fp.h',
16 'third_party/dmg_fp/g_fmt.cc', 16 'third_party/dmg_fp/g_fmt.cc',
17 'third_party/dmg_fp/dtoa_wrapper.cc', 17 'third_party/dmg_fp/dtoa_wrapper.cc',
18 'third_party/icu/icu_utf.cc', 18 'third_party/icu/icu_utf.cc',
19 'third_party/icu/icu_utf.h', 19 'third_party/icu/icu_utf.h',
20 'third_party/nspr/prtime.cc', 20 'third_party/nspr/prtime.cc',
21 'third_party/nspr/prtime.h', 21 'third_party/nspr/prtime.h',
22 'android/auto_global_jobject.cc',
23 'android/auto_global_jobject.h',
24 'android/auto_jobject.cc',
25 'android/auto_jobject.h',
22 'at_exit.cc', 26 'at_exit.cc',
23 'at_exit.h', 27 'at_exit.h',
24 'atomic_ref_count.h', 28 'atomic_ref_count.h',
25 'atomic_sequence_num.h', 29 'atomic_sequence_num.h',
26 'atomicops.h', 30 'atomicops.h',
27 'atomicops_internals_x86_gcc.cc', 31 'atomicops_internals_x86_gcc.cc',
28 'atomicops_internals_x86_msvc.h', 32 'atomicops_internals_x86_msvc.h',
29 'base_api.h', 33 'base_api.h',
30 'base_paths.cc', 34 'base_paths.cc',
31 'base_paths.h', 35 'base_paths.h',
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 }, 408 },
405 ], 409 ],
406 [ 'OS != "openbsd"', { 410 [ 'OS != "openbsd"', {
407 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], 411 'sources/': [ ['exclude', '_openbsd\\.cc$'] ],
408 }, 412 },
409 ], 413 ],
410 ['OS != "win"', { 414 ['OS != "win"', {
411 'sources/': [ ['exclude', '^win/'] ], 415 'sources/': [ ['exclude', '^win/'] ],
412 }, 416 },
413 ], 417 ],
418 ['OS != "android"', {
419 'sources/': [ ['exclude', '^android/'] ],
420 },
421 ],
414 [ 'OS == "win"', { 422 [ 'OS == "win"', {
415 'include_dirs': [ 423 'include_dirs': [
416 '<(DEPTH)/third_party/wtl/include', 424 '<(DEPTH)/third_party/wtl/include',
417 ], 425 ],
418 'sources!': [ 426 'sources!': [
419 'event_recorder_stubs.cc', 427 'event_recorder_stubs.cc',
420 'file_descriptor_shuffle.cc', 428 'file_descriptor_shuffle.cc',
421 'message_pump_libevent.cc', 429 'message_pump_libevent.cc',
422 # Not using sha1_win.cc because it may have caused a 430 # Not using sha1_win.cc because it may have caused a
423 # regression to page cycler moz. 431 # regression to page cycler moz.
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 'third_party/xdg_mime/xdgmimemagic.c', 714 'third_party/xdg_mime/xdgmimemagic.c',
707 'third_party/xdg_mime/xdgmimemagic.h', 715 'third_party/xdg_mime/xdgmimemagic.h',
708 'third_party/xdg_mime/xdgmimeparent.c', 716 'third_party/xdg_mime/xdgmimeparent.c',
709 'third_party/xdg_mime/xdgmimeparent.h', 717 'third_party/xdg_mime/xdgmimeparent.h',
710 ], 718 ],
711 }, 719 },
712 ], 720 ],
713 }], 721 }],
714 ], 722 ],
715 } 723 }
OLDNEW
« base/android/auto_jobject.h ('K') | « base/android/auto_jobject.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698