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

Side by Side Diff: chrome/chrome_common.gypi

Issue 13160004: Re-implement form validation message UI with native widgets. (Common and Mac) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: adddress review comments, and add a test Created 7 years, 7 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'common', 8 'target_name': 'common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 10 'variables': {
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 'common/startup_metric_utils.cc', 398 'common/startup_metric_utils.cc',
399 'common/startup_metric_utils.h', 399 'common/startup_metric_utils.h',
400 'common/switch_utils.cc', 400 'common/switch_utils.cc',
401 'common/switch_utils.h', 401 'common/switch_utils.h',
402 'common/thumbnail_score.cc', 402 'common/thumbnail_score.cc',
403 'common/thumbnail_score.h', 403 'common/thumbnail_score.h',
404 'common/time_format.cc', 404 'common/time_format.cc',
405 'common/time_format.h', 405 'common/time_format.h',
406 'common/url_constants.cc', 406 'common/url_constants.cc',
407 'common/url_constants.h', 407 'common/url_constants.h',
408 'common/validation_message_messages.h',
408 'common/web_apps.cc', 409 'common/web_apps.cc',
409 'common/web_apps.h', 410 'common/web_apps.h',
410 'common/web_resource/web_resource_unpacker.cc', 411 'common/web_resource/web_resource_unpacker.cc',
411 'common/web_resource/web_resource_unpacker.h', 412 'common/web_resource/web_resource_unpacker.h',
412 'common/worker_thread_ticker.cc', 413 'common/worker_thread_ticker.cc',
413 'common/worker_thread_ticker.h', 414 'common/worker_thread_ticker.h',
414 ], 415 ],
415 'conditions': [ 416 'conditions': [
416 ['enable_extensions==1', { 417 ['enable_extensions==1', {
417 'sources!': [ 418 'sources!': [
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 ['exclude', '^common/custom_handlers/'], 463 ['exclude', '^common/custom_handlers/'],
463 ['exclude', '^common/extensions/'], 464 ['exclude', '^common/extensions/'],
464 ['exclude', '^common/external_ipc_fuzzer\\.'], 465 ['exclude', '^common/external_ipc_fuzzer\\.'],
465 ['exclude', '^common/logging_chrome\\.'], 466 ['exclude', '^common/logging_chrome\\.'],
466 ['exclude', '^common/multi_process_'], 467 ['exclude', '^common/multi_process_'],
467 ['exclude', '^common/nacl_'], 468 ['exclude', '^common/nacl_'],
468 ['exclude', '^common/pepper_flash\\.'], 469 ['exclude', '^common/pepper_flash\\.'],
469 ['exclude', '^common/profiling\\.'], 470 ['exclude', '^common/profiling\\.'],
470 ['exclude', '^common/service_process_util_'], 471 ['exclude', '^common/service_process_util_'],
471 ['exclude', '^common/spellcheck_'], 472 ['exclude', '^common/spellcheck_'],
473 ['exclude', '^common/validation_message_'],
472 ['exclude', '^common/web_apps\\.'], 474 ['exclude', '^common/web_apps\\.'],
473 # TODO(ios): Include files here as they are made to work; once 475 # TODO(ios): Include files here as they are made to work; once
474 # everything is online, remove everything below here and just 476 # everything is online, remove everything below here and just
475 # use the exclusions above. 477 # use the exclusions above.
476 ['exclude', '\\.(cc|mm)$'], 478 ['exclude', '\\.(cc|mm)$'],
477 ['include', '_ios\\.(cc|mm)$'], 479 ['include', '_ios\\.(cc|mm)$'],
478 ['include', '(^|/)ios/'], 480 ['include', '(^|/)ios/'],
479 ['include', '^common/chrome_version_info\\.cc$'], 481 ['include', '^common/chrome_version_info\\.cc$'],
480 ['include', '^common/zip'], 482 ['include', '^common/zip'],
481 ], 483 ],
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 'common/metrics/proto/user_action_event.proto', 734 'common/metrics/proto/user_action_event.proto',
733 ], 735 ],
734 'variables': { 736 'variables': {
735 'proto_in_dir': 'common/metrics/proto', 737 'proto_in_dir': 'common/metrics/proto',
736 'proto_out_dir': 'chrome/common/metrics/proto', 738 'proto_out_dir': 'chrome/common/metrics/proto',
737 }, 739 },
738 'includes': [ '../build/protoc.gypi' ], 740 'includes': [ '../build/protoc.gypi' ],
739 }, 741 },
740 ], 742 ],
741 } 743 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698