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

Side by Side Diff: net/net.gyp

Issue 1214933009: Class for parsing and evaluating RFC 5280 NameConstraints. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@compare_DN2
Patch Set: review changes for comment #6 Created 5 years, 3 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'linux_link_kerberos%': 0, 8 'linux_link_kerberos%': 0,
9 'conditions': [ 9 'conditions': [
10 ['chromeos==1 or embedded==1 or OS=="ios"', { 10 ['chromeos==1 or embedded==1 or OS=="ios"', {
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 }], 356 }],
357 ], 357 ],
358 }, 358 },
359 ], 359 ],
360 [ 'OS == "ios"', { 360 [ 'OS == "ios"', {
361 'actions': [ 361 'actions': [
362 { 362 {
363 'action_name': 'copy_test_data', 363 'action_name': 'copy_test_data',
364 'variables': { 364 'variables': {
365 'test_data_files': [ 365 'test_data_files': [
366 'data/name_constraints_unittest/',
366 'data/ssl/certificates/', 367 'data/ssl/certificates/',
367 'data/test.html', 368 'data/test.html',
368 'data/url_request_unittest/', 369 'data/url_request_unittest/',
369 'data/verify_name_match_unittest/names/', 370 'data/verify_name_match_unittest/names/',
370 'data/parse_certificate_unittest/', 371 'data/parse_certificate_unittest/',
371 ], 372 ],
372 'test_data_prefix': 'net', 373 'test_data_prefix': 'net',
373 }, 374 },
374 'includes': [ '../build/copy_test_data_ios.gypi' ], 375 'includes': [ '../build/copy_test_data_ios.gypi' ],
375 }, 376 },
(...skipping 1212 matching lines...) Expand 10 before | Expand all | Expand 10 after
1588 '../build/isolate.gypi', 1589 '../build/isolate.gypi',
1589 ], 1590 ],
1590 'sources': [ 1591 'sources': [
1591 'net_unittests.isolate', 1592 'net_unittests.isolate',
1592 ], 1593 ],
1593 }, 1594 },
1594 ], 1595 ],
1595 }], 1596 }],
1596 ], 1597 ],
1597 } 1598 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698