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