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

Side by Side Diff: chrome/chrome_common.gypi

Issue 2814012: Split part of about_handler into chrome/common to break the browser-renderer ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: with unit test Created 10 years, 6 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 | « chrome/browser/browser_about_handler_unittest.cc ('k') | chrome/chrome_tests.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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'chrome_common_target': 0, 8 'chrome_common_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
11 ['chrome_common_target==1', { 11 ['chrome_common_target==1', {
12 'include_dirs': [ 12 'include_dirs': [
13 '..', 13 '..',
14 ], 14 ],
15 'conditions': [ 15 'conditions': [
16 ['OS=="win"', { 16 ['OS=="win"', {
17 'include_dirs': [ 17 'include_dirs': [
18 '<(DEPTH)/third_party/wtl/include', 18 '<(DEPTH)/third_party/wtl/include',
19 ], 19 ],
20 }], 20 }],
21 ], 21 ],
22 'sources': [ 22 'sources': [
23 # .cc, .h, and .mm files under chrome/common that are used on all 23 # .cc, .h, and .mm files under chrome/common that are used on all
24 # platforms, including both 32-bit and 64-bit Windows. 24 # platforms, including both 32-bit and 64-bit Windows.
25 # Test files are not included. 25 # Test files are not included.
26 'common/about_handler.cc',
27 'common/about_handler.h',
26 'common/app_mode_common_mac.h', 28 'common/app_mode_common_mac.h',
27 'common/app_mode_common_mac.mm', 29 'common/app_mode_common_mac.mm',
28 'common/bindings_policy.h', 30 'common/bindings_policy.h',
29 'common/child_process.cc', 31 'common/child_process.cc',
30 'common/child_process.h', 32 'common/child_process.h',
31 'common/child_process_info.cc', 33 'common/child_process_info.cc',
32 'common/child_process_info.h', 34 'common/child_process_info.h',
33 'common/child_process_logging.h', 35 'common/child_process_logging.h',
34 'common/child_process_logging_linux.cc', 36 'common/child_process_logging_linux.cc',
35 'common/child_process_logging_mac.mm', 37 'common/child_process_logging_mac.mm',
(...skipping 14 matching lines...) Expand all
50 'common/geoposition.cc', 52 'common/geoposition.cc',
51 'common/geoposition.h', 53 'common/geoposition.h',
52 'common/gpu_messages.h', 54 'common/gpu_messages.h',
53 'common/gpu_messages_internal.h', 55 'common/gpu_messages_internal.h',
54 'common/logging_chrome.cc', 56 'common/logging_chrome.cc',
55 'common/logging_chrome.h', 57 'common/logging_chrome.h',
56 'common/main_function_params.h', 58 'common/main_function_params.h',
57 'common/message_router.cc', 59 'common/message_router.cc',
58 'common/message_router.h', 60 'common/message_router.h',
59 'common/metrics_helpers.cc', 61 'common/metrics_helpers.cc',
60 'common/metrics_helpers.h', 62 'common/metrics_helpers.h',
61 'common/nacl_cmd_line.cc', 63 'common/nacl_cmd_line.cc',
62 'common/nacl_cmd_line.h', 64 'common/nacl_cmd_line.h',
63 'common/nacl_messages.h', 65 'common/nacl_messages.h',
64 'common/nacl_types.h', 66 'common/nacl_types.h',
65 'common/nacl_messages_internal.h', 67 'common/nacl_messages_internal.h',
66 'common/notification_details.h', 68 'common/notification_details.h',
67 'common/notification_observer.h', 69 'common/notification_observer.h',
68 'common/notification_registrar.cc', 70 'common/notification_registrar.cc',
69 'common/notification_registrar.h', 71 'common/notification_registrar.h',
70 'common/notification_service.cc', 72 'common/notification_service.cc',
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 # TODO(gregoryd): chrome_resources and chrome_strings could be 364 # TODO(gregoryd): chrome_resources and chrome_strings could be
363 # shared with the 32-bit target, but it does not work due to a gyp 365 # shared with the 32-bit target, but it does not work due to a gyp
364 # issue. 366 # issue.
365 'chrome_resources', 367 'chrome_resources',
366 'chrome_strings', 368 'chrome_strings',
367 'common_constants_win64', 369 'common_constants_win64',
368 '../app/app.gyp:app_base_nacl_win64', 370 '../app/app.gyp:app_base_nacl_win64',
369 '../app/app.gyp:app_resources', 371 '../app/app.gyp:app_resources',
370 '../base/base.gyp:base_nacl_win64', 372 '../base/base.gyp:base_nacl_win64',
371 '../ipc/ipc.gyp:ipc_win64', 373 '../ipc/ipc.gyp:ipc_win64',
372 '../third_party/libxml/libxml.gyp:libxml', 374 '../third_party/libxml/libxml.gyp:libxml',
373 ], 375 ],
374 'include_dirs': [ 376 'include_dirs': [
375 '../third_party/npapi', 377 '../third_party/npapi',
376 '../third_party/icu/public/i18n', 378 '../third_party/icu/public/i18n',
377 '../third_party/icu/public/common', 379 '../third_party/icu/public/common',
378 # We usually get these skia directories by adding a dependency on 380 # We usually get these skia directories by adding a dependency on
379 # skia, bu we don't need it for NaCl's 64-bit Windows support. The 381 # skia, bu we don't need it for NaCl's 64-bit Windows support. The
380 # directories are required for resolving the includes in any case. 382 # directories are required for resolving the includes in any case.
381 '../third_party/skia/include/core', 383 '../third_party/skia/include/core',
382 '../skia/config', 384 '../skia/config',
(...skipping 21 matching lines...) Expand all
404 'configurations': { 406 'configurations': {
405 'Common_Base': { 407 'Common_Base': {
406 'msvs_target_platform': 'x64', 408 'msvs_target_platform': 'x64',
407 }, 409 },
408 }, 410 },
409 }, 411 },
410 ], 412 ],
411 }], 413 }],
412 ], 414 ],
413 } 415 }
OLDNEW
« no previous file with comments | « chrome/browser/browser_about_handler_unittest.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698