OLD | NEW |
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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 }, | 407 }, |
404 ], | 408 ], |
405 [ 'OS != "openbsd"', { | 409 [ 'OS != "openbsd"', { |
406 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], | 410 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], |
407 }, | 411 }, |
408 ], | 412 ], |
409 ['OS != "win"', { | 413 ['OS != "win"', { |
410 'sources/': [ ['exclude', '^win/'] ], | 414 'sources/': [ ['exclude', '^win/'] ], |
411 }, | 415 }, |
412 ], | 416 ], |
| 417 ['OS != "android"', { |
| 418 'sources/': [ ['exclude', '^android/'] ], |
| 419 }, |
| 420 ], |
413 [ 'OS == "win"', { | 421 [ 'OS == "win"', { |
414 'include_dirs': [ | 422 'include_dirs': [ |
415 '<(DEPTH)/third_party/wtl/include', | 423 '<(DEPTH)/third_party/wtl/include', |
416 ], | 424 ], |
417 'sources!': [ | 425 'sources!': [ |
418 'event_recorder_stubs.cc', | 426 'event_recorder_stubs.cc', |
419 'file_descriptor_shuffle.cc', | 427 'file_descriptor_shuffle.cc', |
420 'message_pump_libevent.cc', | 428 'message_pump_libevent.cc', |
421 # Not using sha1_win.cc because it may have caused a | 429 # Not using sha1_win.cc because it may have caused a |
422 # regression to page cycler moz. | 430 # regression to page cycler moz. |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
705 'third_party/xdg_mime/xdgmimemagic.c', | 713 'third_party/xdg_mime/xdgmimemagic.c', |
706 'third_party/xdg_mime/xdgmimemagic.h', | 714 'third_party/xdg_mime/xdgmimemagic.h', |
707 'third_party/xdg_mime/xdgmimeparent.c', | 715 'third_party/xdg_mime/xdgmimeparent.c', |
708 'third_party/xdg_mime/xdgmimeparent.h', | 716 'third_party/xdg_mime/xdgmimeparent.h', |
709 ], | 717 ], |
710 }, | 718 }, |
711 ], | 719 ], |
712 }], | 720 }], |
713 ], | 721 ], |
714 } | 722 } |
OLD | NEW |