OLD | NEW |
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': [ |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 'common/devtools_messages_internal.h', | 49 'common/devtools_messages_internal.h', |
50 'common/geoposition.cc', | 50 'common/geoposition.cc', |
51 'common/geoposition.h', | 51 'common/geoposition.h', |
52 'common/gpu_messages.h', | 52 'common/gpu_messages.h', |
53 'common/gpu_messages_internal.h', | 53 'common/gpu_messages_internal.h', |
54 'common/logging_chrome.cc', | 54 'common/logging_chrome.cc', |
55 'common/logging_chrome.h', | 55 'common/logging_chrome.h', |
56 'common/main_function_params.h', | 56 'common/main_function_params.h', |
57 'common/message_router.cc', | 57 'common/message_router.cc', |
58 'common/message_router.h', | 58 'common/message_router.h', |
| 59 'common/metrics_helpers.cc', |
| 60 'common/metrics_helpers.h', |
59 'common/nacl_cmd_line.cc', | 61 'common/nacl_cmd_line.cc', |
60 'common/nacl_cmd_line.h', | 62 'common/nacl_cmd_line.h', |
61 'common/nacl_messages.h', | 63 'common/nacl_messages.h', |
62 'common/nacl_types.h', | 64 'common/nacl_types.h', |
63 'common/nacl_messages_internal.h', | 65 'common/nacl_messages_internal.h', |
64 'common/notification_details.h', | 66 'common/notification_details.h', |
65 'common/notification_observer.h', | 67 'common/notification_observer.h', |
66 'common/notification_registrar.cc', | 68 'common/notification_registrar.cc', |
67 'common/notification_registrar.h', | 69 'common/notification_registrar.h', |
68 'common/notification_service.cc', | 70 'common/notification_service.cc', |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 # TODO(gregoryd): chrome_resources and chrome_strings could be | 362 # TODO(gregoryd): chrome_resources and chrome_strings could be |
361 # shared with the 32-bit target, but it does not work due to a gyp | 363 # shared with the 32-bit target, but it does not work due to a gyp |
362 # issue. | 364 # issue. |
363 'chrome_resources', | 365 'chrome_resources', |
364 'chrome_strings', | 366 'chrome_strings', |
365 'common_constants_win64', | 367 'common_constants_win64', |
366 '../app/app.gyp:app_base_nacl_win64', | 368 '../app/app.gyp:app_base_nacl_win64', |
367 '../app/app.gyp:app_resources', | 369 '../app/app.gyp:app_resources', |
368 '../base/base.gyp:base_nacl_win64', | 370 '../base/base.gyp:base_nacl_win64', |
369 '../ipc/ipc.gyp:ipc_win64', | 371 '../ipc/ipc.gyp:ipc_win64', |
| 372 '../third_party/libxml/libxml.gyp:libxml', |
370 ], | 373 ], |
371 'include_dirs': [ | 374 'include_dirs': [ |
372 '../third_party/npapi', | 375 '../third_party/npapi', |
373 '../third_party/icu/public/i18n', | 376 '../third_party/icu/public/i18n', |
374 '../third_party/icu/public/common', | 377 '../third_party/icu/public/common', |
375 # We usually get these skia directories by adding a dependency on | 378 # We usually get these skia directories by adding a dependency on |
376 # skia, bu we don't need it for NaCl's 64-bit Windows support. The | 379 # skia, bu we don't need it for NaCl's 64-bit Windows support. The |
377 # directories are required for resolving the includes in any case. | 380 # directories are required for resolving the includes in any case. |
378 '../third_party/skia/include/core', | 381 '../third_party/skia/include/core', |
379 '../skia/config', | 382 '../skia/config', |
(...skipping 21 matching lines...) Expand all Loading... |
401 'configurations': { | 404 'configurations': { |
402 'Common_Base': { | 405 'Common_Base': { |
403 'msvs_target_platform': 'x64', | 406 'msvs_target_platform': 'x64', |
404 }, | 407 }, |
405 }, | 408 }, |
406 }, | 409 }, |
407 ], | 410 ], |
408 }], | 411 }], |
409 ], | 412 ], |
410 } | 413 } |
OLD | NEW |