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

Side by Side Diff: base/base.gyp

Issue 10413022: Move dir_reader to base/files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix linux Created 8 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
« no previous file with comments | « no previous file | base/base.gypi » ('j') | 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) 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',
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 'build_time_unittest.cc', 366 'build_time_unittest.cc',
367 'callback_unittest.cc', 367 'callback_unittest.cc',
368 'callback_unittest.nc', 368 'callback_unittest.nc',
369 'cancelable_callback_unittest.cc', 369 'cancelable_callback_unittest.cc',
370 'command_line_unittest.cc', 370 'command_line_unittest.cc',
371 'cpu_unittest.cc', 371 'cpu_unittest.cc',
372 'debug/leak_tracker_unittest.cc', 372 'debug/leak_tracker_unittest.cc',
373 'debug/stack_trace_unittest.cc', 373 'debug/stack_trace_unittest.cc',
374 'debug/trace_event_unittest.cc', 374 'debug/trace_event_unittest.cc',
375 'debug/trace_event_win_unittest.cc', 375 'debug/trace_event_win_unittest.cc',
376 'dir_reader_posix_unittest.cc',
377 'environment_unittest.cc', 376 'environment_unittest.cc',
378 'file_descriptor_shuffle_unittest.cc', 377 'file_descriptor_shuffle_unittest.cc',
379 'file_path_unittest.cc', 378 'file_path_unittest.cc',
380 'file_util_proxy_unittest.cc', 379 'file_util_proxy_unittest.cc',
381 'file_util_unittest.cc', 380 'file_util_unittest.cc',
382 'file_version_info_unittest.cc', 381 'file_version_info_unittest.cc',
382 'files/dir_reader_posix_unittest.cc',
383 'gmock_unittest.cc', 383 'gmock_unittest.cc',
384 'guid_unittest.cc', 384 'guid_unittest.cc',
385 'hi_res_timer_manager_unittest.cc', 385 'hi_res_timer_manager_unittest.cc',
386 'id_map_unittest.cc', 386 'id_map_unittest.cc',
387 'i18n/break_iterator_unittest.cc', 387 'i18n/break_iterator_unittest.cc',
388 'i18n/char_iterator_unittest.cc', 388 'i18n/char_iterator_unittest.cc',
389 'i18n/case_conversion_unittest.cc', 389 'i18n/case_conversion_unittest.cc',
390 'i18n/file_util_icu_unittest.cc', 390 'i18n/file_util_icu_unittest.cc',
391 'i18n/icu_string_conversions_unittest.cc', 391 'i18n/icu_string_conversions_unittest.cc',
392 'i18n/number_formatting_unittest.cc', 392 'i18n/number_formatting_unittest.cc',
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 'message_pump_glib_unittest.cc', 581 'message_pump_glib_unittest.cc',
582 ] 582 ]
583 }], 583 }],
584 # This is needed to trigger the dll copy step on windows. 584 # This is needed to trigger the dll copy step on windows.
585 # TODO(mark): This should not be necessary. 585 # TODO(mark): This should not be necessary.
586 ['OS == "win"', { 586 ['OS == "win"', {
587 'dependencies': [ 587 'dependencies': [
588 '../third_party/icu/icu.gyp:icudata', 588 '../third_party/icu/icu.gyp:icudata',
589 ], 589 ],
590 'sources!': [ 590 'sources!': [
591 'dir_reader_posix_unittest.cc',
592 'file_descriptor_shuffle_unittest.cc', 591 'file_descriptor_shuffle_unittest.cc',
592 'files/dir_reader_posix_unittest.cc',
593 'threading/worker_pool_posix_unittest.cc', 593 'threading/worker_pool_posix_unittest.cc',
594 'message_pump_libevent_unittest.cc', 594 'message_pump_libevent_unittest.cc',
595 ], 595 ],
596 }, { # OS != "win" 596 }, { # OS != "win"
597 'dependencies': [ 597 'dependencies': [
598 '../third_party/libevent/libevent.gyp:libevent' 598 '../third_party/libevent/libevent.gyp:libevent'
599 ], 599 ],
600 'sources/': [ 600 'sources/': [
601 ['exclude', '^win/'], 601 ['exclude', '^win/'],
602 ], 602 ],
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
1021 'test_suite_name': 'base_unittests', 1021 'test_suite_name': 'base_unittests',
1022 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit tests<(SHARED_LIB_SUFFIX)', 1022 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)base_unit tests<(SHARED_LIB_SUFFIX)',
1023 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',], 1023 'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',],
1024 }, 1024 },
1025 'includes': [ '../build/apk_test.gypi' ], 1025 'includes': [ '../build/apk_test.gypi' ],
1026 }, 1026 },
1027 ], 1027 ],
1028 }], 1028 }],
1029 ], 1029 ],
1030 } 1030 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698