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

Side by Side Diff: base/base.gypi

Issue 8387053: regex fixes in base.gypi for android files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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) 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': [
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 'sources/' : [ [ 'include', 'message_pump_x.cc', ] ], 427 'sources/' : [ [ 'include', 'message_pump_x.cc', ] ],
428 }], 428 }],
429 [ 'OS != "linux" and OS != "openbsd"', { 429 [ 'OS != "linux" and OS != "openbsd"', {
430 'sources!': [ 430 'sources!': [
431 # Not automatically excluded by the *linux.cc rules. 431 # Not automatically excluded by the *linux.cc rules.
432 'linux_util.cc', 432 'linux_util.cc',
433 ], 433 ],
434 }, 434 },
435 ], 435 ],
436 [ 'OS == "android"', { 436 [ 'OS == "android"', {
437 'sources!': [
438 'files/file_path_watcher_kqueue.cc',
439 'debug/stack_trace.cc',
440 'debug/stack_trace_posix.cc',
441 'system_monitor/system_monitor_posix.cc',
442 ],
437 'sources/': [ 443 'sources/': [
438 ['exclude', '^debug/stack_trace.cc'], 444 ['include', '^native_library_linux\\.cc$'],
439 ['exclude', '^debug/stack_trace_posix.cc'], 445 ['include', '^process_util_linux\\.cc$'],
440 ['exclude', '^system_monitor/system_monitor_posix.cc'], 446 ['include', '^sys_info_linux\\.cc$'],
441 ['include', '^native_library_linux.cc'], 447 ['include', '^sys_string_conversions_linux\\.cc$'],
442 ['include', '^process_util_linux.cc'], 448 ['include', '^worker_pool_linux\\.cc$'],
443 ['include', '^sys_info_linux.cc'],
444 ['include', '^sys_string_conversions_linux.cc'],
445 ['include', '^worker_pool_linux.cc'],
446 # TODO(michaelbai): The below files are excluded because of the 449 # TODO(michaelbai): The below files are excluded because of the
447 # missing JNI, add them back when JNI is ready. 450 # missing JNI, add them back when JNI is ready.
448 ['exclude', '^android/'], 451 ['exclude', '^android/'],
449 ['exclude', '^message_pump_android.cc'], 452 ['exclude', '^message_pump_android\\.cc$'],
450 ['exclude', '^base_paths_android.cc'], 453 ['exclude', '^base_paths_android\\.cc$'],
451 ['exclude', '^debug/stack_trace_android.cc'], 454 ['exclude', '^debug/stack_trace_android\\.cc$'],
452 ], 455 ],
453 }], 456 }],
454 [ 'OS != "mac"', { 457 [ 'OS != "mac"', {
455 'sources!': [ 458 'sources!': [
456 'mac/scoped_aedesc.h' 459 'mac/scoped_aedesc.h'
457 ], 460 ],
458 }], 461 }],
459 # For now, just test the *BSD platforms enough to exclude them. 462 # For now, just test the *BSD platforms enough to exclude them.
460 # Subsequent changes will include them further. 463 # Subsequent changes will include them further.
461 [ 'OS != "freebsd"', { 464 [ 'OS != "freebsd"', {
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
821 'third_party/xdg_mime/xdgmimemagic.c', 824 'third_party/xdg_mime/xdgmimemagic.c',
822 'third_party/xdg_mime/xdgmimemagic.h', 825 'third_party/xdg_mime/xdgmimemagic.h',
823 'third_party/xdg_mime/xdgmimeparent.c', 826 'third_party/xdg_mime/xdgmimeparent.c',
824 'third_party/xdg_mime/xdgmimeparent.h', 827 'third_party/xdg_mime/xdgmimeparent.h',
825 ], 828 ],
826 }, 829 },
827 ], 830 ],
828 }], 831 }],
829 ], 832 ],
830 } 833 }
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